diff --git a/common/define-grammar.js b/common/define-grammar.js index e1771e49..5c6b30bb 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -355,11 +355,11 @@ module.exports = function defineGrammar(dialect) { const_declaration: $ => $._const_declaration, - _class_const_declaration: $ => seq( + _class_const_declaration: $ => prec(1, seq( optional(field('attributes', $.attribute_list)), optional(field('modifier', $.final_modifier)), $._const_declaration, - ), + )), _const_declaration: $ => seq( optional($.visibility_modifier), diff --git a/common/test/corpus/class.txt b/common/test/corpus/class.txt index eca37269..6115f49c 100644 --- a/common/test/corpus/class.txt +++ b/common/test/corpus/class.txt @@ -182,6 +182,7 @@ class Foo { protected const C = 3; private const D = 4; final const E = 5; + final public const F = 6; } --- @@ -210,6 +211,11 @@ class Foo { (final_modifier) (const_element (name) (integer)) ) + (const_declaration + (final_modifier) + (visibility_modifier) + (const_element (name) (integer)) + ) ) ) ) diff --git a/php/src/grammar.json b/php/src/grammar.json index 165e152b..0de6c1fc 100644 --- a/php/src/grammar.json +++ b/php/src/grammar.json @@ -1464,45 +1464,49 @@ "name": "_const_declaration" }, "_class_const_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attribute_list" + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "modifier", - "content": { - "type": "SYMBOL", - "name": "final_modifier" + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "SYMBOL", + "name": "final_modifier" + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_const_declaration" - } - ] + ] + }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + } }, "_const_declaration": { "type": "SEQ", diff --git a/php/src/parser.c b/php/src/parser.c index a9b033f1..8f8a5eff 100644 --- a/php/src/parser.c +++ b/php/src/parser.c @@ -111497,7 +111497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40401] = 8, + [40401] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -111510,11 +111510,15 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2660), 1, sym_visibility_modifier, + ACTIONS(234), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, ACTIONS(2475), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2471), 25, + ACTIONS(2471), 22, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -111524,9 +111528,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, @@ -111540,7 +111541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [40452] = 23, + [40454] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -111598,7 +111599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40533] = 28, + [40535] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -111661,7 +111662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40624] = 24, + [40626] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -111720,7 +111721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40707] = 18, + [40709] = 18, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -111773,7 +111774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [40778] = 24, + [40780] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -111832,7 +111833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40861] = 28, + [40863] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -111895,7 +111896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [40952] = 28, + [40954] = 28, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -111958,7 +111959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_declaration, sym_method_declaration, sym_use_declaration, - [41043] = 8, + [41045] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -111971,11 +111972,15 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2660), 1, sym_visibility_modifier, + ACTIONS(234), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, ACTIONS(2475), 3, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(2471), 25, + ACTIONS(2471), 22, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -111985,9 +111990,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, anon_sym_QMARK, anon_sym_array, aux_sym_primitive_type_token1, @@ -112001,7 +112003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [41094] = 25, + [41098] = 25, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112061,7 +112063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41179] = 23, + [41183] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112118,7 +112120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41259] = 23, + [41263] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112175,7 +112177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41339] = 23, + [41343] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112232,7 +112234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41419] = 23, + [41423] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112289,7 +112291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41499] = 23, + [41503] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112346,7 +112348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41579] = 23, + [41583] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112403,7 +112405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41659] = 23, + [41663] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112460,7 +112462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41739] = 23, + [41743] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112517,7 +112519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41819] = 17, + [41823] = 17, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -112568,7 +112570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [41887] = 24, + [41891] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112626,7 +112628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41969] = 5, + [41973] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112665,7 +112667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [42013] = 23, + [42017] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112722,7 +112724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42093] = 24, + [42097] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112780,7 +112782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42175] = 23, + [42179] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112837,7 +112839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42255] = 23, + [42259] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112894,7 +112896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42335] = 23, + [42339] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -112951,7 +112953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42415] = 23, + [42419] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113008,7 +113010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42495] = 23, + [42499] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113065,7 +113067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42575] = 23, + [42579] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113122,7 +113124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42655] = 17, + [42659] = 17, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -113173,7 +113175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [42723] = 23, + [42727] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113230,7 +113232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42803] = 23, + [42807] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113287,7 +113289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42883] = 23, + [42887] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113344,7 +113346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42963] = 24, + [42967] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113402,7 +113404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43045] = 23, + [43049] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113459,7 +113461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43125] = 24, + [43129] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113517,7 +113519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43207] = 23, + [43211] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113574,7 +113576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43287] = 24, + [43291] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113632,7 +113634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43369] = 23, + [43373] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113689,7 +113691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43449] = 23, + [43453] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113746,7 +113748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43529] = 23, + [43533] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113803,7 +113805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43609] = 23, + [43613] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113860,7 +113862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43689] = 23, + [43693] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113917,7 +113919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43769] = 23, + [43773] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -113974,7 +113976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43849] = 23, + [43853] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114031,7 +114033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43929] = 23, + [43933] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114088,7 +114090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44009] = 23, + [44013] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114145,7 +114147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44089] = 23, + [44093] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114202,7 +114204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44169] = 24, + [44173] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114260,7 +114262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44251] = 24, + [44255] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114318,7 +114320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44333] = 23, + [44337] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114375,7 +114377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44413] = 24, + [44417] = 24, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114433,7 +114435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44495] = 23, + [44499] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114490,7 +114492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44575] = 23, + [44579] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114546,7 +114548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44654] = 23, + [44658] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114602,7 +114604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44733] = 23, + [44737] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114658,7 +114660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44812] = 23, + [44816] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114714,7 +114716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44891] = 23, + [44895] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114770,7 +114772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44970] = 23, + [44974] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114826,7 +114828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45049] = 23, + [45053] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114882,7 +114884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45128] = 23, + [45132] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114938,7 +114940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45207] = 23, + [45211] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -114994,7 +114996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45286] = 23, + [45290] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115050,7 +115052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45365] = 23, + [45369] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115106,7 +115108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45444] = 24, + [45448] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -115163,7 +115165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [45525] = 23, + [45529] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115219,7 +115221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45604] = 23, + [45608] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115275,7 +115277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45683] = 23, + [45687] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115331,7 +115333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45762] = 23, + [45766] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115387,7 +115389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45841] = 23, + [45845] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115443,7 +115445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45920] = 23, + [45924] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115499,7 +115501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45999] = 23, + [46003] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115555,7 +115557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46078] = 23, + [46082] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115611,7 +115613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46157] = 23, + [46161] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115667,7 +115669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46236] = 23, + [46240] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115723,7 +115725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46315] = 23, + [46319] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115779,7 +115781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46394] = 23, + [46398] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115835,7 +115837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46473] = 23, + [46477] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115891,7 +115893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46552] = 23, + [46556] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -115947,7 +115949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46631] = 23, + [46635] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116003,7 +116005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46710] = 23, + [46714] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116059,7 +116061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46789] = 23, + [46793] = 23, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -116115,7 +116117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [46868] = 23, + [46872] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116171,7 +116173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [46947] = 23, + [46951] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116227,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47026] = 23, + [47030] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116283,7 +116285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47105] = 23, + [47109] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116339,7 +116341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47184] = 23, + [47188] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116395,7 +116397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47263] = 23, + [47267] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116451,7 +116453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47342] = 24, + [47346] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -116508,7 +116510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [47423] = 23, + [47427] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116564,7 +116566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47502] = 23, + [47506] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116620,7 +116622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47581] = 23, + [47585] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116676,7 +116678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47660] = 23, + [47664] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116732,7 +116734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47739] = 24, + [47743] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -116789,7 +116791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [47820] = 23, + [47824] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116845,7 +116847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47899] = 23, + [47903] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116901,7 +116903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [47978] = 23, + [47982] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -116957,7 +116959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48057] = 23, + [48061] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117013,7 +117015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48136] = 5, + [48140] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117051,7 +117053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [48179] = 5, + [48183] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117089,7 +117091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [48222] = 23, + [48226] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117145,7 +117147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48301] = 23, + [48305] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117201,7 +117203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48380] = 23, + [48384] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117257,7 +117259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48459] = 23, + [48463] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117313,7 +117315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48538] = 23, + [48542] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117369,7 +117371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48617] = 23, + [48621] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117425,7 +117427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48696] = 23, + [48700] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117481,7 +117483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48775] = 23, + [48779] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117537,7 +117539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48854] = 23, + [48858] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117593,7 +117595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [48933] = 23, + [48937] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117649,7 +117651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49012] = 23, + [49016] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117705,7 +117707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49091] = 23, + [49095] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117761,7 +117763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49170] = 23, + [49174] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117817,7 +117819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49249] = 23, + [49253] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117873,7 +117875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49328] = 23, + [49332] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117929,7 +117931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49407] = 23, + [49411] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -117985,7 +117987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49486] = 23, + [49490] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118041,7 +118043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49565] = 23, + [49569] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118097,7 +118099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49644] = 23, + [49648] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118153,7 +118155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49723] = 23, + [49727] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118209,7 +118211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49802] = 23, + [49806] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118265,7 +118267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49881] = 23, + [49885] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118321,7 +118323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [49960] = 24, + [49964] = 24, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118378,7 +118380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [50041] = 6, + [50045] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118417,7 +118419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50086] = 23, + [50090] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118473,7 +118475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [50165] = 23, + [50169] = 23, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118529,7 +118531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [50244] = 5, + [50248] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118566,7 +118568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50286] = 5, + [50290] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118603,7 +118605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50328] = 5, + [50332] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118640,7 +118642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50370] = 5, + [50374] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -118677,7 +118679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50412] = 8, + [50416] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118716,7 +118718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50459] = 7, + [50463] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118754,7 +118756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50504] = 14, + [50508] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -118797,7 +118799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50561] = 14, + [50565] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -118840,7 +118842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50618] = 5, + [50622] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118874,7 +118876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50657] = 14, + [50661] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -118917,7 +118919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50714] = 5, + [50718] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -118951,7 +118953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50753] = 14, + [50757] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -118994,7 +118996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50810] = 5, + [50814] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119028,7 +119030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [50849] = 14, + [50853] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119071,7 +119073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50906] = 14, + [50910] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119114,7 +119116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [50963] = 5, + [50967] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -119148,7 +119150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [51002] = 14, + [51006] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119191,7 +119193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51059] = 14, + [51063] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119234,7 +119236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51116] = 14, + [51120] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119277,7 +119279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51173] = 14, + [51177] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119320,7 +119322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51230] = 14, + [51234] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119363,7 +119365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51287] = 13, + [51291] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119404,7 +119406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51341] = 13, + [51345] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119445,7 +119447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51395] = 13, + [51399] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119486,7 +119488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51449] = 13, + [51453] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119527,7 +119529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51503] = 13, + [51507] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119568,7 +119570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51557] = 13, + [51561] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119609,7 +119611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51611] = 11, + [51615] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119645,7 +119647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51658] = 11, + [51662] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119681,7 +119683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51705] = 11, + [51709] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -119717,7 +119719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [51752] = 5, + [51756] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -119747,7 +119749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [51787] = 5, + [51791] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -119776,7 +119778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [51821] = 18, + [51825] = 18, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -119817,7 +119819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_modifier, sym_readonly_modifier, sym_static_modifier, - [51880] = 15, + [51884] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -119854,7 +119856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [51932] = 15, + [51936] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -119891,7 +119893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [51984] = 16, + [51988] = 16, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -119929,7 +119931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52038] = 15, + [52042] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -119965,7 +119967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52089] = 14, + [52093] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120000,7 +120002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52138] = 14, + [52142] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120035,7 +120037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52187] = 15, + [52191] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120071,7 +120073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52238] = 15, + [52242] = 15, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120107,7 +120109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52289] = 14, + [52293] = 14, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -120142,7 +120144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52338] = 6, + [52342] = 6, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120169,7 +120171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [52371] = 7, + [52375] = 7, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120197,7 +120199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [52406] = 5, + [52410] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120222,7 +120224,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [52436] = 12, + [52440] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120254,7 +120256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_readonly_modifier, sym_static_modifier, sym_visibility_modifier, - [52480] = 4, + [52484] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120277,7 +120279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [52507] = 4, + [52511] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120300,7 +120302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [52534] = 4, + [52538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120323,7 +120325,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [52561] = 13, + [52565] = 13, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120355,7 +120357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_LT_QMARK, anon_sym_QMARK_GT2, - [52606] = 4, + [52610] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120378,7 +120380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [52633] = 4, + [52637] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120400,7 +120402,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52659] = 4, + [52663] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120422,7 +120424,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52685] = 4, + [52689] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120444,7 +120446,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52711] = 4, + [52715] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120466,7 +120468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52737] = 4, + [52741] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120488,7 +120490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52763] = 4, + [52767] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120510,7 +120512,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52789] = 14, + [52793] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120542,7 +120544,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1609), 2, sym__complex_string_part, sym__simple_string_part, - [52835] = 13, + [52839] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120573,7 +120575,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1609), 2, sym__complex_string_part, sym__simple_string_part, - [52879] = 14, + [52883] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120605,7 +120607,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1609), 2, sym__complex_string_part, sym__simple_string_part, - [52925] = 14, + [52929] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120637,7 +120639,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1609), 2, sym__complex_string_part, sym__simple_string_part, - [52971] = 4, + [52975] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120659,7 +120661,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [52997] = 4, + [53001] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120681,7 +120683,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53023] = 4, + [53027] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120703,7 +120705,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53049] = 4, + [53053] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120725,7 +120727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53075] = 4, + [53079] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120747,7 +120749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53101] = 4, + [53105] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120769,7 +120771,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53127] = 10, + [53131] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(593), 1, @@ -120797,7 +120799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_heredoc, sym_nowdoc, - [53165] = 4, + [53169] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120819,7 +120821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53191] = 4, + [53195] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120841,7 +120843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53217] = 4, + [53221] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120863,7 +120865,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53243] = 4, + [53247] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120885,7 +120887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53269] = 4, + [53273] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120907,7 +120909,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53295] = 4, + [53299] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120929,7 +120931,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53321] = 14, + [53325] = 14, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -120961,7 +120963,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1609), 2, sym__complex_string_part, sym__simple_string_part, - [53367] = 4, + [53371] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -120982,7 +120984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53392] = 12, + [53396] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, @@ -121011,7 +121013,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53433] = 12, + [53437] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, @@ -121040,7 +121042,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53474] = 13, + [53478] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121070,7 +121072,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1635), 2, sym__complex_string_part, sym__simple_string_part, - [53517] = 4, + [53521] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121091,7 +121093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53542] = 4, + [53546] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121112,7 +121114,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53567] = 4, + [53571] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121133,7 +121135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53592] = 13, + [53596] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121163,7 +121165,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1635), 2, sym__complex_string_part, sym__simple_string_part, - [53635] = 13, + [53639] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121193,7 +121195,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1635), 2, sym__complex_string_part, sym__simple_string_part, - [53678] = 5, + [53682] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -121215,7 +121217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [53705] = 4, + [53709] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121236,7 +121238,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53730] = 15, + [53734] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121268,7 +121270,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1963), 2, sym_final_modifier, sym_abstract_modifier, - [53777] = 4, + [53781] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121289,7 +121291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53802] = 4, + [53806] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121310,7 +121312,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53827] = 4, + [53831] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121331,7 +121333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53852] = 15, + [53856] = 15, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121363,7 +121365,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1960), 2, sym_final_modifier, sym_abstract_modifier, - [53899] = 13, + [53903] = 13, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121393,7 +121395,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1635), 2, sym__complex_string_part, sym__simple_string_part, - [53942] = 4, + [53946] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121414,7 +121416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53967] = 4, + [53971] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121435,7 +121437,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [53992] = 4, + [53996] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121456,7 +121458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54017] = 4, + [54021] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121477,7 +121479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54042] = 4, + [54046] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121498,7 +121500,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54067] = 7, + [54071] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121522,7 +121524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54098] = 4, + [54102] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121543,7 +121545,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54123] = 4, + [54127] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121564,7 +121566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54148] = 4, + [54152] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121585,7 +121587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54173] = 4, + [54177] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121606,7 +121608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54198] = 4, + [54202] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121627,7 +121629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54223] = 4, + [54227] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121648,7 +121650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54248] = 4, + [54252] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121669,7 +121671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54273] = 4, + [54277] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121690,7 +121692,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54298] = 12, + [54302] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121719,7 +121721,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1635), 2, sym__complex_string_part, sym__simple_string_part, - [54339] = 4, + [54343] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121740,7 +121742,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54364] = 4, + [54368] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121761,7 +121763,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54389] = 4, + [54393] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121782,7 +121784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54414] = 4, + [54418] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121803,7 +121805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54439] = 4, + [54443] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121824,7 +121826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54464] = 4, + [54468] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121845,7 +121847,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54489] = 4, + [54493] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(18), 1, @@ -121866,7 +121868,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [54514] = 8, + [54518] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -121891,7 +121893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [54547] = 12, + [54551] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -121919,7 +121921,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54587] = 10, + [54591] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -121945,7 +121947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [54623] = 12, + [54627] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -121973,7 +121975,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54663] = 12, + [54667] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122001,7 +122003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54703] = 12, + [54707] = 12, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122029,7 +122031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54743] = 11, + [54747] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122055,7 +122057,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54780] = 10, + [54784] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122080,7 +122082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54815] = 11, + [54819] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122106,7 +122108,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54852] = 5, + [54856] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122126,7 +122128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54877] = 5, + [54881] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122146,7 +122148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [54902] = 9, + [54906] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(302), 1, @@ -122170,7 +122172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_heredoc, sym_nowdoc, - [54935] = 10, + [54939] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122195,7 +122197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [54970] = 11, + [54974] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122221,7 +122223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55007] = 5, + [55011] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122241,7 +122243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55032] = 5, + [55036] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122261,7 +122263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55057] = 9, + [55061] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(302), 1, @@ -122285,7 +122287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_heredoc, sym_nowdoc, - [55090] = 11, + [55094] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, @@ -122311,7 +122313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55127] = 10, + [55131] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122336,7 +122338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55162] = 11, + [55166] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122362,7 +122364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55199] = 11, + [55203] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(555), 1, @@ -122388,7 +122390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55236] = 5, + [55240] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122407,7 +122409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55260] = 5, + [55264] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122426,7 +122428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55284] = 10, + [55288] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122450,7 +122452,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55318] = 7, + [55322] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122471,7 +122473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55346] = 5, + [55350] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122490,7 +122492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55370] = 5, + [55374] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122509,7 +122511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55394] = 5, + [55398] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122528,7 +122530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55418] = 5, + [55422] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122547,7 +122549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55442] = 5, + [55446] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122566,7 +122568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55466] = 5, + [55470] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122585,7 +122587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [55490] = 5, + [55494] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122604,7 +122606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55514] = 5, + [55518] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122623,7 +122625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55538] = 5, + [55542] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122642,7 +122644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55562] = 5, + [55566] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122661,7 +122663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55586] = 10, + [55590] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122685,7 +122687,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55620] = 10, + [55624] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122709,7 +122711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [55654] = 5, + [55658] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122728,7 +122730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55678] = 5, + [55682] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122747,7 +122749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [55702] = 7, + [55706] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122768,7 +122770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55730] = 5, + [55734] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122787,7 +122789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55754] = 9, + [55758] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -122810,7 +122812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55786] = 7, + [55790] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122831,7 +122833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55814] = 5, + [55818] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122850,7 +122852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [55838] = 5, + [55842] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -122869,7 +122871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [55862] = 9, + [55866] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122892,7 +122894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [55894] = 7, + [55898] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122913,7 +122915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [55922] = 6, + [55926] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122933,7 +122935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [55948] = 8, + [55952] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -122955,7 +122957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [55978] = 10, + [55982] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -122979,7 +122981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56012] = 9, + [56016] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123002,7 +123004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56044] = 10, + [56048] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -123026,7 +123028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56078] = 4, + [56082] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123043,7 +123045,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56099] = 9, + [56103] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -123065,7 +123067,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56130] = 8, + [56134] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -123086,7 +123088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56159] = 8, + [56163] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123107,7 +123109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56188] = 8, + [56192] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1520), 1, @@ -123128,7 +123130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56217] = 6, + [56221] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123147,7 +123149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [56242] = 9, + [56246] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123169,7 +123171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56273] = 7, + [56277] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123189,7 +123191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56300] = 8, + [56304] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1526), 1, @@ -123210,7 +123212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56329] = 8, + [56333] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123231,7 +123233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56358] = 8, + [56362] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -123252,7 +123254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56387] = 8, + [56391] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1526), 1, @@ -123273,7 +123275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56416] = 9, + [56420] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -123295,7 +123297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56447] = 9, + [56451] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -123317,7 +123319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56478] = 8, + [56482] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123338,7 +123340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [56507] = 8, + [56511] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123359,7 +123361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [56536] = 6, + [56540] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123378,7 +123380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [56561] = 8, + [56565] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123399,7 +123401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56590] = 8, + [56594] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -123420,7 +123422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56619] = 4, + [56623] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123437,7 +123439,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56640] = 7, + [56644] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123457,7 +123459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [56667] = 4, + [56671] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123474,7 +123476,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56688] = 4, + [56692] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123491,7 +123493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56709] = 7, + [56713] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123511,7 +123513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56736] = 10, + [56740] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123534,7 +123536,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56769] = 9, + [56773] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1526), 1, @@ -123556,7 +123558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [56800] = 8, + [56804] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123577,7 +123579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56829] = 4, + [56833] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123594,7 +123596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56850] = 7, + [56854] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123614,7 +123616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56877] = 8, + [56881] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123635,7 +123637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [56906] = 4, + [56910] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123652,7 +123654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56927] = 4, + [56931] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123669,7 +123671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [56948] = 8, + [56952] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123690,7 +123692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [56977] = 7, + [56981] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123710,7 +123712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [57004] = 5, + [57008] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123728,7 +123730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [57027] = 8, + [57031] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123749,7 +123751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57056] = 8, + [57060] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123770,7 +123772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57085] = 10, + [57089] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123793,7 +123795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57118] = 9, + [57122] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1526), 1, @@ -123815,7 +123817,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57149] = 7, + [57153] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123835,7 +123837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57176] = 8, + [57180] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -123856,7 +123858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57205] = 8, + [57209] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -123877,7 +123879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57234] = 7, + [57238] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123897,7 +123899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [57261] = 9, + [57265] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123919,7 +123921,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57292] = 9, + [57296] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123941,7 +123943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57323] = 8, + [57327] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123962,7 +123964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57352] = 9, + [57356] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -123984,7 +123986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57383] = 8, + [57387] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -124005,7 +124007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57412] = 8, + [57416] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124026,7 +124028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57441] = 7, + [57445] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124046,7 +124048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57468] = 8, + [57472] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124067,7 +124069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57497] = 8, + [57501] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124088,7 +124090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57526] = 7, + [57530] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124108,7 +124110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57553] = 7, + [57557] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124128,7 +124130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [57580] = 7, + [57584] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124148,7 +124150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [57607] = 8, + [57611] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124169,7 +124171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57636] = 9, + [57640] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124191,7 +124193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57667] = 9, + [57671] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124213,7 +124215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57698] = 8, + [57702] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124234,7 +124236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57727] = 8, + [57731] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124255,7 +124257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57756] = 9, + [57760] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -124277,7 +124279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57787] = 8, + [57791] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124298,7 +124300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57816] = 9, + [57820] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1520), 1, @@ -124320,7 +124322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [57847] = 5, + [57851] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124338,7 +124340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [57870] = 8, + [57874] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124359,7 +124361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57899] = 8, + [57903] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1520), 1, @@ -124380,7 +124382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [57928] = 11, + [57932] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124403,7 +124405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2451), 1, sym_class_interface_clause, - [57962] = 10, + [57966] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124425,7 +124427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3375), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57994] = 7, + [57998] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -124444,7 +124446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58020] = 11, + [58024] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124467,7 +124469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2373), 1, sym_class_interface_clause, - [58054] = 11, + [58058] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -124490,7 +124492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2676), 1, sym_namespace_name, - [58088] = 7, + [58092] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124509,7 +124511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58114] = 11, + [58118] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -124532,7 +124534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2676), 1, sym_namespace_name, - [58148] = 9, + [58152] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(937), 1, @@ -124553,7 +124555,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1753), 2, sym_catch_clause, sym_finally_clause, - [58178] = 7, + [58182] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124572,7 +124574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58204] = 8, + [58208] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(945), 1, @@ -124592,7 +124594,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1753), 2, sym_catch_clause, sym_finally_clause, - [58232] = 11, + [58236] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124615,7 +124617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2269), 1, sym_class_interface_clause, - [58266] = 9, + [58270] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124636,7 +124638,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [58296] = 7, + [58300] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124655,7 +124657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58322] = 11, + [58326] = 11, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124678,7 +124680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2458), 1, sym_class_interface_clause, - [58356] = 5, + [58360] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124694,7 +124696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58377] = 8, + [58381] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124713,7 +124715,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58404] = 5, + [58408] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124729,7 +124731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58425] = 8, + [58429] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124748,7 +124750,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2511), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [58452] = 6, + [58456] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124765,7 +124767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58475] = 8, + [58479] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124784,7 +124786,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2511), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [58502] = 5, + [58506] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124800,7 +124802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58523] = 5, + [58527] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124816,7 +124818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58544] = 5, + [58548] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124832,7 +124834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58565] = 6, + [58569] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124849,7 +124851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58588] = 5, + [58592] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124865,7 +124867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58609] = 8, + [58613] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124884,7 +124886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58636] = 5, + [58640] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124900,7 +124902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58657] = 5, + [58661] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124916,7 +124918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [58678] = 8, + [58682] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124935,7 +124937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58705] = 8, + [58709] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124954,7 +124956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [58732] = 9, + [58736] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -124974,7 +124976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3090), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [58761] = 10, + [58765] = 10, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(212), 1, @@ -124995,7 +124997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2676), 1, sym_namespace_name, - [58792] = 6, + [58796] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125012,7 +125014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58815] = 6, + [58819] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125029,7 +125031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [58838] = 6, + [58842] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125046,7 +125048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58861] = 6, + [58865] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125063,7 +125065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58884] = 6, + [58888] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125080,7 +125082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58907] = 5, + [58911] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125096,7 +125098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58928] = 6, + [58932] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125113,7 +125115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58951] = 5, + [58955] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125129,7 +125131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [58972] = 6, + [58976] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125146,7 +125148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [58995] = 6, + [58999] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125163,7 +125165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59018] = 7, + [59022] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125181,7 +125183,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59043] = 5, + [59047] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125197,7 +125199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59064] = 6, + [59068] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125214,7 +125216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59087] = 6, + [59091] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125231,7 +125233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59110] = 6, + [59114] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125248,7 +125250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59133] = 6, + [59137] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125265,7 +125267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59156] = 5, + [59160] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125281,7 +125283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59177] = 6, + [59181] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125298,7 +125300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59200] = 5, + [59204] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125314,7 +125316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59221] = 5, + [59225] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125330,7 +125332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59242] = 6, + [59246] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125347,7 +125349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59265] = 5, + [59269] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125363,7 +125365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [59286] = 6, + [59290] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125380,7 +125382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59309] = 6, + [59313] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125397,7 +125399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [59332] = 8, + [59336] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125416,7 +125418,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2511), 2, sym__simple_string_subscript_unary_expression, sym_variable_name, - [59359] = 8, + [59363] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125434,7 +125436,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59385] = 9, + [59389] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(967), 1, @@ -125453,7 +125455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2133), 1, sym_else_if_clause, - [59413] = 9, + [59417] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125472,7 +125474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2567), 1, sym_else_clause_2, - [59441] = 8, + [59445] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125490,7 +125492,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59467] = 8, + [59471] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125508,7 +125510,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59493] = 5, + [59497] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125523,7 +125525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59513] = 9, + [59517] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125542,7 +125544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2504), 1, sym_else_clause_2, - [59541] = 5, + [59545] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125557,7 +125559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59561] = 8, + [59565] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125575,7 +125577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3456), 2, anon_sym_COMMA, anon_sym_RBRACK, - [59587] = 8, + [59591] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125593,7 +125595,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59613] = 9, + [59617] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125612,7 +125614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2311), 1, sym_class_interface_clause, - [59641] = 7, + [59645] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125629,7 +125631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [59665] = 9, + [59669] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125648,7 +125650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2426), 1, sym__return_type, - [59693] = 5, + [59697] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125663,7 +125665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59713] = 9, + [59717] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125682,7 +125684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2423), 1, sym_class_interface_clause, - [59741] = 5, + [59745] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125697,7 +125699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59761] = 5, + [59765] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125712,7 +125714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59781] = 8, + [59785] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125730,7 +125732,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [59807] = 8, + [59811] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125748,7 +125750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3375), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59833] = 9, + [59837] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125767,7 +125769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2452), 1, sym_class_interface_clause, - [59861] = 5, + [59865] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125782,7 +125784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59881] = 9, + [59885] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(953), 1, @@ -125801,7 +125803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2133), 1, sym_else_if_clause, - [59909] = 5, + [59913] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125816,7 +125818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [59929] = 9, + [59933] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125835,7 +125837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2368), 1, sym_class_interface_clause, - [59957] = 7, + [59961] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125852,7 +125854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [59981] = 8, + [59985] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125870,7 +125872,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [60007] = 7, + [60011] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125887,7 +125889,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [60031] = 9, + [60035] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(967), 1, @@ -125906,7 +125908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2133), 1, sym_else_if_clause, - [60059] = 9, + [60063] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125925,7 +125927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2232), 1, sym_class_interface_clause, - [60087] = 9, + [60091] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -125944,7 +125946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2386), 1, sym__return_type, - [60115] = 9, + [60119] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125963,7 +125965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2417), 1, sym__return_type, - [60143] = 9, + [60147] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125982,7 +125984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2316), 1, sym__return_type, - [60171] = 5, + [60175] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -125997,7 +125999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [60191] = 7, + [60195] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126014,7 +126016,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [60215] = 8, + [60219] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126032,7 +126034,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3492), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60241] = 9, + [60245] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126051,7 +126053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2441), 1, sym_class_interface_clause, - [60269] = 9, + [60273] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126070,7 +126072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2562), 1, sym_else_clause_2, - [60297] = 9, + [60301] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(953), 1, @@ -126089,7 +126091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2133), 1, sym_else_if_clause, - [60325] = 9, + [60329] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126108,7 +126110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2318), 1, sym__return_type, - [60353] = 8, + [60357] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126126,7 +126128,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [60379] = 9, + [60383] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126145,7 +126147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2279), 1, sym__return_type, - [60407] = 9, + [60411] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126164,7 +126166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2330), 1, sym_class_interface_clause, - [60435] = 6, + [60439] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126180,7 +126182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [60457] = 7, + [60461] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126197,7 +126199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [60481] = 9, + [60485] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126216,7 +126218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2478), 1, sym__return_type, - [60509] = 9, + [60513] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126235,7 +126237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2483), 1, sym_class_interface_clause, - [60537] = 9, + [60541] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126254,7 +126256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2472), 1, sym__return_type, - [60565] = 7, + [60569] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126271,7 +126273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [60589] = 9, + [60593] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126290,7 +126292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2325), 1, sym_class_interface_clause, - [60617] = 9, + [60621] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126309,7 +126311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2455), 1, sym__return_type, - [60645] = 9, + [60649] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126328,7 +126330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2464), 1, sym__return_type, - [60673] = 9, + [60677] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126347,7 +126349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2409), 1, sym_class_interface_clause, - [60701] = 8, + [60705] = 8, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -126365,7 +126367,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3502), 2, aux_sym_text_token1, aux_sym_text_token2, - [60727] = 9, + [60731] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126384,7 +126386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2240), 1, sym__return_type, - [60755] = 9, + [60759] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126403,7 +126405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2542), 1, sym_else_clause_2, - [60783] = 9, + [60787] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126422,7 +126424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2418), 1, sym__return_type, - [60811] = 9, + [60815] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126441,7 +126443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2422), 1, sym__return_type, - [60839] = 5, + [60843] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126456,7 +126458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [60859] = 9, + [60863] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -126475,7 +126477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2333), 1, sym__return_type, - [60887] = 8, + [60891] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126493,7 +126495,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1838), 2, sym_case_statement, sym_default_statement, - [60913] = 9, + [60917] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126512,7 +126514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2362), 1, sym_class_interface_clause, - [60941] = 9, + [60945] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126531,7 +126533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2480), 1, sym__return_type, - [60969] = 9, + [60973] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126550,7 +126552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2431), 1, sym_class_interface_clause, - [60997] = 9, + [61001] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126569,7 +126571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2471), 1, sym_class_interface_clause, - [61025] = 5, + [61029] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126584,7 +126586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [61045] = 7, + [61049] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126601,7 +126603,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [61069] = 8, + [61073] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126619,7 +126621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3512), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [61095] = 9, + [61099] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126638,7 +126640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2437), 1, sym_class_interface_clause, - [61123] = 9, + [61127] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126657,7 +126659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2430), 1, sym_class_interface_clause, - [61151] = 9, + [61155] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126676,7 +126678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2351), 1, sym_class_interface_clause, - [61179] = 9, + [61183] = 9, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126695,7 +126697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2340), 1, sym__return_type, - [61207] = 6, + [61211] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126710,7 +126712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [61228] = 6, + [61232] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1038), 1, @@ -126725,7 +126727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3518), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61249] = 7, + [61253] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -126741,7 +126743,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(11), 2, aux_sym_text_token1, aux_sym_text_token2, - [61272] = 7, + [61276] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126757,7 +126759,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(761), 2, sym_dynamic_variable_name, sym_variable_name, - [61295] = 6, + [61299] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126772,7 +126774,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61316] = 6, + [61320] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126787,7 +126789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [61337] = 8, + [61341] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126804,7 +126806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1690), 1, sym_text_interpolation, - [61362] = 8, + [61366] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126821,7 +126823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2070), 1, sym_variable_name, - [61387] = 6, + [61391] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126836,7 +126838,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61408] = 6, + [61412] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126851,7 +126853,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61429] = 5, + [61433] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126865,7 +126867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61448] = 8, + [61452] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126882,7 +126884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1695), 1, sym_text_interpolation, - [61473] = 5, + [61477] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126896,7 +126898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61492] = 8, + [61496] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, @@ -126913,7 +126915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1760), 1, sym_namespace_name, - [61517] = 8, + [61521] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126930,7 +126932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2002), 1, sym_variable_name, - [61542] = 5, + [61546] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126944,7 +126946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61561] = 6, + [61565] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126959,7 +126961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [61582] = 5, + [61586] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126973,7 +126975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61601] = 6, + [61605] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -126988,7 +126990,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61622] = 8, + [61626] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127005,7 +127007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2312), 1, aux_sym_namespace_name_repeat1, - [61647] = 8, + [61651] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127022,7 +127024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1704), 1, sym_text_interpolation, - [61672] = 8, + [61676] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127039,7 +127041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2485), 1, sym_class_interface_clause, - [61697] = 6, + [61701] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1020), 1, @@ -127054,7 +127056,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3594), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61718] = 7, + [61722] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127070,7 +127072,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3598), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [61741] = 6, + [61745] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127085,7 +127087,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [61762] = 7, + [61766] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127101,7 +127103,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1604), 2, sym_dynamic_variable_name, sym_variable_name, - [61785] = 7, + [61789] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1520), 1, @@ -127117,7 +127119,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(677), 2, sym_dynamic_variable_name, sym_variable_name, - [61808] = 8, + [61812] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127134,7 +127136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1711), 1, sym_text_interpolation, - [61833] = 6, + [61837] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127149,7 +127151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [61854] = 7, + [61858] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127165,7 +127167,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(888), 2, sym_dynamic_variable_name, sym_variable_name, - [61877] = 7, + [61881] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127181,7 +127183,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1753), 2, sym_catch_clause, sym_finally_clause, - [61900] = 6, + [61904] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1014), 1, @@ -127196,7 +127198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3621), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61921] = 5, + [61925] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(999), 1, @@ -127210,7 +127212,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [61940] = 8, + [61944] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127227,7 +127229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2290), 1, sym_class_interface_clause, - [61965] = 8, + [61969] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127244,7 +127246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1718), 1, sym_text_interpolation, - [61990] = 7, + [61994] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -127260,7 +127262,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3633), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62013] = 5, + [62017] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1010), 1, @@ -127274,7 +127276,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62032] = 8, + [62036] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127291,7 +127293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1721), 1, sym_text_interpolation, - [62057] = 8, + [62061] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127308,7 +127310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1722), 1, sym_text_interpolation, - [62082] = 8, + [62086] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127325,7 +127327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1723), 1, sym_text_interpolation, - [62107] = 8, + [62111] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127342,7 +127344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2424), 1, sym_class_interface_clause, - [62132] = 6, + [62136] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1044), 1, @@ -127357,7 +127359,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3657), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62153] = 6, + [62157] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1050), 1, @@ -127372,7 +127374,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3659), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62174] = 6, + [62178] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1074), 1, @@ -127387,7 +127389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3661), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62195] = 7, + [62199] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(597), 1, @@ -127403,7 +127405,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(587), 2, sym_dynamic_variable_name, sym_variable_name, - [62218] = 6, + [62222] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1056), 1, @@ -127418,7 +127420,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3667), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62239] = 7, + [62243] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127434,7 +127436,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1670), 2, sym_dynamic_variable_name, sym_variable_name, - [62262] = 6, + [62266] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1124), 1, @@ -127449,7 +127451,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3675), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62283] = 6, + [62287] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1080), 1, @@ -127464,7 +127466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3677), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62304] = 7, + [62308] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -127480,7 +127482,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(619), 2, sym_dynamic_variable_name, sym_variable_name, - [62327] = 7, + [62331] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127496,7 +127498,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1604), 2, sym_dynamic_variable_name, sym_variable_name, - [62350] = 7, + [62354] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127512,7 +127514,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2221), 2, sym_variable_name, sym_variable_reference, - [62373] = 6, + [62377] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127527,7 +127529,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [62394] = 7, + [62398] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127543,7 +127545,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1670), 2, sym_dynamic_variable_name, sym_variable_name, - [62417] = 6, + [62421] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127558,7 +127560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62438] = 8, + [62442] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -127575,7 +127577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2180), 1, sym_compound_statement, - [62463] = 8, + [62467] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127592,7 +127594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1740), 1, sym_text_interpolation, - [62488] = 6, + [62492] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1026), 1, @@ -127607,7 +127609,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3697), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62509] = 7, + [62513] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127623,7 +127625,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1467), 2, sym_dynamic_variable_name, sym_variable_name, - [62532] = 7, + [62536] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127639,7 +127641,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2221), 2, sym_variable_name, sym_variable_reference, - [62555] = 5, + [62559] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(981), 1, @@ -127653,7 +127655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62574] = 7, + [62578] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127669,7 +127671,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1467), 2, sym_dynamic_variable_name, sym_variable_name, - [62597] = 4, + [62601] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127682,7 +127684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [62614] = 7, + [62618] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1526), 1, @@ -127698,7 +127700,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(807), 2, sym_dynamic_variable_name, sym_variable_name, - [62637] = 6, + [62641] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127713,7 +127715,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62658] = 6, + [62662] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1086), 1, @@ -127728,7 +127730,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3715), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62679] = 8, + [62683] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127745,7 +127747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1750), 1, sym_text_interpolation, - [62704] = 6, + [62708] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1092), 1, @@ -127760,7 +127762,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62725] = 6, + [62729] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1098), 1, @@ -127775,7 +127777,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62746] = 5, + [62750] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(985), 1, @@ -127789,7 +127791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [62765] = 6, + [62769] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127804,7 +127806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62786] = 6, + [62790] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127819,7 +127821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62807] = 4, + [62811] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127832,7 +127834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [62824] = 6, + [62828] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -127847,7 +127849,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1757), 2, sym_text_interpolation, aux_sym_text_repeat1, - [62845] = 6, + [62849] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127862,7 +127864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [62866] = 6, + [62870] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127877,7 +127879,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [62887] = 7, + [62891] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, @@ -127893,7 +127895,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3743), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62910] = 6, + [62914] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1032), 1, @@ -127908,7 +127910,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3745), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62931] = 4, + [62935] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127921,7 +127923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [62948] = 6, + [62952] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1104), 1, @@ -127936,7 +127938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3747), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62969] = 6, + [62973] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1110), 1, @@ -127951,7 +127953,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3749), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62990] = 7, + [62994] = 7, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -127967,7 +127969,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3502), 2, aux_sym_text_token1, aux_sym_text_token2, - [63013] = 7, + [63017] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1001), 1, @@ -127983,7 +127985,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1766), 2, sym_text_interpolation, aux_sym_if_statement_repeat1, - [63036] = 4, + [63040] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -127996,7 +127998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [63053] = 5, + [63057] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128010,7 +128012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63072] = 7, + [63076] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128026,7 +128028,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1769), 2, sym_text_interpolation, aux_sym_if_statement_repeat2, - [63095] = 6, + [63099] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1068), 1, @@ -128041,7 +128043,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3764), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63116] = 6, + [63120] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128056,7 +128058,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [63137] = 7, + [63141] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128072,7 +128074,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3598), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [63160] = 6, + [63164] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128087,7 +128089,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63181] = 5, + [63185] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128101,7 +128103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [63200] = 6, + [63204] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1062), 1, @@ -128116,7 +128118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3775), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63221] = 8, + [63225] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128133,7 +128135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, STATE(1776), 1, sym_text_interpolation, - [63246] = 8, + [63250] = 8, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128150,7 +128152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2361), 1, sym_class_interface_clause, - [63271] = 5, + [63275] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128164,7 +128166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63290] = 6, + [63294] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128179,7 +128181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [63311] = 7, + [63315] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128195,7 +128197,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(432), 2, sym_catch_clause, sym_finally_clause, - [63334] = 4, + [63338] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128208,7 +128210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [63351] = 6, + [63355] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128223,7 +128225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [63372] = 5, + [63376] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128237,7 +128239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [63391] = 6, + [63395] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128252,7 +128254,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1784), 2, sym_text_interpolation, aux_sym_text_repeat1, - [63412] = 7, + [63416] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128267,7 +128269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2479), 1, sym_reference_modifier, - [63434] = 7, + [63438] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128282,7 +128284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2315), 1, sym__return_type, - [63456] = 7, + [63460] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128297,7 +128299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2452), 1, sym_class_interface_clause, - [63478] = 7, + [63482] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128312,7 +128314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2258), 1, sym_class_interface_clause, - [63500] = 5, + [63504] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128325,7 +128327,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1789), 2, sym_text_interpolation, aux_sym_intersection_type_repeat1, - [63518] = 6, + [63522] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128339,7 +128341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3799), 2, anon_sym_COMMA, anon_sym_RBRACE, - [63538] = 7, + [63542] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128354,7 +128356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2323), 1, sym_reference_modifier, - [63560] = 7, + [63564] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -128369,7 +128371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2033), 1, aux_sym__list_destructing_repeat1, - [63582] = 4, + [63586] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128381,7 +128383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [63598] = 4, + [63602] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128393,7 +128395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [63614] = 4, + [63618] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128405,7 +128407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [63630] = 5, + [63634] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128418,7 +128420,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1796), 2, sym_text_interpolation, aux_sym_type_list_repeat1, - [63648] = 5, + [63652] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128431,7 +128433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [63666] = 4, + [63670] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128443,7 +128445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [63682] = 6, + [63686] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128457,7 +128459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3816), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63702] = 6, + [63706] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128471,7 +128473,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3820), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63722] = 7, + [63726] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128486,7 +128488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2595), 1, sym_static_modifier, - [63744] = 7, + [63748] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128501,7 +128503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1802), 1, sym_text_interpolation, - [63766] = 7, + [63770] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128516,7 +128518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2369), 1, sym_reference_modifier, - [63788] = 4, + [63792] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128528,7 +128530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [63804] = 5, + [63808] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128541,7 +128543,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1805), 2, sym_text_interpolation, aux_sym_property_declaration_repeat2, - [63822] = 7, + [63826] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128556,7 +128558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2346), 1, sym_base_clause, - [63844] = 6, + [63848] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128570,7 +128572,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3843), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63864] = 6, + [63868] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128584,7 +128586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3845), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [63884] = 6, + [63888] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128598,7 +128600,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3849), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [63904] = 4, + [63908] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128610,7 +128612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [63920] = 6, + [63924] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128624,7 +128626,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3851), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63940] = 5, + [63944] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128637,7 +128639,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1812), 2, sym_text_interpolation, aux_sym__const_declaration_repeat1, - [63958] = 6, + [63962] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128651,7 +128653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3860), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63978] = 6, + [63982] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128665,7 +128667,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3862), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63998] = 6, + [64002] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128679,7 +128681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3864), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64018] = 6, + [64022] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128693,7 +128695,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3866), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64038] = 5, + [64042] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128706,7 +128708,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [64056] = 6, + [64060] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128720,7 +128722,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3874), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64076] = 5, + [64080] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128733,7 +128735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [64094] = 7, + [64098] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128748,7 +128750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2211), 1, sym_reference_modifier, - [64116] = 5, + [64120] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128761,7 +128763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_php_tag, aux_sym_text_token1, aux_sym_text_token2, - [64134] = 7, + [64138] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128776,7 +128778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2365), 1, sym_reference_modifier, - [64156] = 7, + [64160] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128791,7 +128793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1823), 1, sym_text_interpolation, - [64178] = 6, + [64182] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128805,7 +128807,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3456), 2, anon_sym_COMMA, anon_sym_RBRACK, - [64198] = 6, + [64202] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128819,7 +128821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3886), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64218] = 7, + [64222] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -128834,7 +128836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2350), 1, sym__return_type, - [64240] = 6, + [64244] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128848,7 +128850,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3888), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64260] = 6, + [64264] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128862,7 +128864,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3890), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64280] = 7, + [64284] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128877,7 +128879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2419), 1, sym_reference_modifier, - [64302] = 5, + [64306] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128890,7 +128892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [64320] = 6, + [64324] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128904,7 +128906,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3892), 2, anon_sym_COMMA, anon_sym_RBRACE, - [64340] = 7, + [64344] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128919,7 +128921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2595), 1, sym_static_modifier, - [64362] = 5, + [64366] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -128932,7 +128934,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1833), 2, sym_text_interpolation, aux_sym_nowdoc_body_repeat1, - [64380] = 7, + [64384] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128947,7 +128949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2371), 1, sym_class_interface_clause, - [64402] = 7, + [64406] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128962,7 +128964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2374), 1, sym_class_interface_clause, - [64424] = 6, + [64428] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128976,7 +128978,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3901), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64444] = 4, + [64448] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -128988,7 +128990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [64460] = 4, + [64464] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129000,7 +129002,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_case_token1, aux_sym_match_default_expression_token1, aux_sym_switch_block_token1, - [64476] = 4, + [64480] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129012,7 +129014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [64492] = 7, + [64496] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129027,7 +129029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2379), 1, sym__return_type, - [64514] = 7, + [64518] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129042,7 +129044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1841), 1, sym_text_interpolation, - [64536] = 7, + [64540] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129057,7 +129059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2382), 1, sym__return_type, - [64558] = 6, + [64562] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129071,7 +129073,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3909), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64578] = 4, + [64582] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129083,7 +129085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64594] = 7, + [64598] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129098,7 +129100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2387), 1, sym_class_interface_clause, - [64616] = 7, + [64620] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129113,7 +129115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2235), 1, sym_class_interface_clause, - [64638] = 4, + [64642] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129125,7 +129127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [64654] = 7, + [64658] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129140,7 +129142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2236), 1, sym_class_interface_clause, - [64676] = 7, + [64680] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129155,7 +129157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2421), 1, sym_reference_modifier, - [64698] = 7, + [64702] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129170,7 +129172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2237), 1, sym__return_type, - [64720] = 7, + [64724] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129185,7 +129187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2482), 1, sym_class_interface_clause, - [64742] = 4, + [64746] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129197,7 +129199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [64758] = 7, + [64762] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129212,7 +129214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2396), 1, sym_class_interface_clause, - [64780] = 7, + [64784] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129227,7 +129229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2308), 1, sym__return_type, - [64802] = 7, + [64806] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129242,7 +129244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2427), 1, sym_reference_modifier, - [64824] = 7, + [64828] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129257,7 +129259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2441), 1, sym_class_interface_clause, - [64846] = 7, + [64850] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129272,7 +129274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2442), 1, sym_class_interface_clause, - [64868] = 6, + [64872] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129286,7 +129288,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3860), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64888] = 7, + [64892] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129301,7 +129303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2213), 1, sym_class_interface_clause, - [64910] = 6, + [64914] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129315,7 +129317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3915), 2, sym__automatic_semicolon, anon_sym_SEMI, - [64930] = 7, + [64934] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129330,7 +129332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2314), 1, sym_class_interface_clause, - [64952] = 7, + [64956] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129345,7 +129347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2349), 1, sym_class_interface_clause, - [64974] = 7, + [64978] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129360,7 +129362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2435), 1, sym_reference_modifier, - [64996] = 7, + [65000] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129375,7 +129377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2416), 1, sym__return_type, - [65018] = 5, + [65022] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129388,7 +129390,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1865), 2, sym_text_interpolation, aux_sym_function_static_declaration_repeat1, - [65036] = 6, + [65040] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129402,7 +129404,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3922), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65056] = 6, + [65060] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129416,7 +129418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3924), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65076] = 7, + [65080] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129431,7 +129433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2408), 1, sym__return_type, - [65098] = 6, + [65102] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129445,7 +129447,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3926), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65118] = 5, + [65122] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129458,7 +129460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [65136] = 7, + [65140] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129473,7 +129475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2448), 1, sym_class_interface_clause, - [65158] = 5, + [65162] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129486,7 +129488,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1872), 2, sym_text_interpolation, aux_sym_global_declaration_repeat1, - [65176] = 6, + [65180] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129500,7 +129502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3933), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65196] = 7, + [65200] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129515,7 +129517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2217), 1, sym__return_type, - [65218] = 6, + [65222] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129529,7 +129531,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3935), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65238] = 7, + [65242] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129544,7 +129546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2296), 1, sym_base_clause, - [65260] = 7, + [65264] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129559,7 +129561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2239), 1, sym__return_type, - [65282] = 7, + [65286] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129574,7 +129576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2412), 1, sym_class_interface_clause, - [65304] = 7, + [65308] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129589,7 +129591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2324), 1, sym_reference_modifier, - [65326] = 7, + [65330] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129604,7 +129606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1880), 1, sym_text_interpolation, - [65348] = 7, + [65352] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129619,7 +129621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2352), 1, sym_class_interface_clause, - [65370] = 6, + [65374] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129633,7 +129635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3941), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65390] = 7, + [65394] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129648,7 +129650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2276), 1, sym_reference_modifier, - [65412] = 6, + [65416] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129662,7 +129664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3943), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65432] = 7, + [65436] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129677,7 +129679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2415), 1, sym__return_type, - [65454] = 7, + [65458] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129692,7 +129694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2395), 1, sym__return_type, - [65476] = 6, + [65480] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129706,7 +129708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3945), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65496] = 6, + [65500] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129720,7 +129722,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3947), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65516] = 6, + [65520] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129734,7 +129736,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3949), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65536] = 6, + [65540] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129748,7 +129750,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65556] = 6, + [65560] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129762,7 +129764,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65576] = 6, + [65580] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129776,7 +129778,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2221), 2, sym_variable_name, sym_variable_reference, - [65596] = 6, + [65600] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129790,7 +129792,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3955), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65616] = 6, + [65620] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -129804,7 +129806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3957), 2, sym_heredoc_end, sym__new_line, - [65636] = 5, + [65640] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129817,7 +129819,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1895), 2, sym_text_interpolation, aux_sym_base_clause_repeat1, - [65654] = 7, + [65658] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129832,7 +129834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2355), 1, sym_reference_modifier, - [65676] = 5, + [65680] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129845,7 +129847,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1897), 2, sym_text_interpolation, aux_sym_namespace_use_declaration_repeat1, - [65694] = 7, + [65698] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129860,7 +129862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2241), 1, sym_class_interface_clause, - [65716] = 4, + [65720] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129872,7 +129874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [65732] = 6, + [65736] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129886,7 +129888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3971), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65752] = 7, + [65756] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -129901,7 +129903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2475), 1, sym__return_type, - [65774] = 6, + [65778] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129915,7 +129917,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3973), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65794] = 6, + [65798] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129929,7 +129931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3975), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65814] = 7, + [65818] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129944,7 +129946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2351), 1, sym_class_interface_clause, - [65836] = 6, + [65840] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129958,7 +129960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65856] = 4, + [65860] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129970,7 +129972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [65872] = 6, + [65876] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129984,7 +129986,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3977), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65892] = 6, + [65896] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -129998,7 +130000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3979), 2, sym__automatic_semicolon, anon_sym_SEMI, - [65912] = 6, + [65916] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130012,7 +130014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3190), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [65932] = 7, + [65936] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130027,7 +130029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2326), 1, sym_class_interface_clause, - [65954] = 7, + [65958] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130042,7 +130044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2383), 1, sym_class_interface_clause, - [65976] = 4, + [65980] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130054,7 +130056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH, anon_sym_LBRACE, - [65992] = 6, + [65996] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130068,7 +130070,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3984), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66012] = 7, + [66016] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130083,7 +130085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2433), 1, sym_class_interface_clause, - [66034] = 4, + [66038] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130095,7 +130097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [66050] = 6, + [66054] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130109,7 +130111,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3986), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66070] = 6, + [66074] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130123,7 +130125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3988), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66090] = 6, + [66094] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130137,7 +130139,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3990), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66110] = 4, + [66114] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130149,7 +130151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, - [66126] = 6, + [66130] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130163,7 +130165,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3990), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66146] = 6, + [66150] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130177,7 +130179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3975), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66166] = 6, + [66170] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130191,7 +130193,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3992), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66186] = 6, + [66190] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130205,7 +130207,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3994), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66206] = 6, + [66210] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130219,7 +130221,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3512), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [66226] = 4, + [66230] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130231,7 +130233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [66242] = 7, + [66246] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -130246,7 +130248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2338), 1, sym__return_type, - [66264] = 4, + [66268] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130258,7 +130260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [66280] = 6, + [66284] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130272,7 +130274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3996), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66300] = 6, + [66304] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130286,7 +130288,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3994), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66320] = 6, + [66324] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130300,7 +130302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3998), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66340] = 6, + [66344] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130314,7 +130316,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4000), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [66360] = 7, + [66364] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130329,7 +130331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2484), 1, sym__return_type, - [66382] = 4, + [66386] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130341,7 +130343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [66398] = 7, + [66402] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130356,7 +130358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2376), 1, sym_class_interface_clause, - [66420] = 7, + [66424] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130371,7 +130373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2393), 1, sym__return_type, - [66442] = 7, + [66446] = 7, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130386,7 +130388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2437), 1, sym_class_interface_clause, - [66464] = 6, + [66468] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130400,7 +130402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4004), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66484] = 6, + [66488] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130414,7 +130416,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2071), 2, sym_variable_name, sym_variable_reference, - [66504] = 6, + [66508] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130428,7 +130430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4006), 2, sym__automatic_semicolon, anon_sym_SEMI, - [66524] = 5, + [66528] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -130441,7 +130443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_php_tag, aux_sym_text_token1, aux_sym_text_token2, - [66542] = 6, + [66546] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -130454,7 +130456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2035), 1, aux_sym__list_destructing_repeat1, - [66561] = 4, + [66565] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -130465,7 +130467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, sym_nowdoc_string, sym__new_line, - [66576] = 5, + [66580] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -130477,7 +130479,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1816), 2, sym_dynamic_variable_name, sym_variable_name, - [66593] = 6, + [66597] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130490,7 +130492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(1944), 1, sym_text_interpolation, - [66612] = 6, + [66616] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130503,7 +130505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1984), 1, aux_sym_array_creation_expression_repeat1, - [66631] = 6, + [66635] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130516,7 +130518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2601), 1, sym_readonly_modifier, - [66650] = 6, + [66654] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130529,7 +130531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2654), 1, sym_namespace_name, - [66669] = 6, + [66673] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130542,7 +130544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2559), 1, sym__return_type, - [66688] = 6, + [66692] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(767), 1, @@ -130555,7 +130557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2040), 1, aux_sym_array_creation_expression_repeat1, - [66707] = 5, + [66711] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130567,7 +130569,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1950), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [66724] = 6, + [66728] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130580,7 +130582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2041), 1, aux_sym_attribute_group_repeat1, - [66743] = 6, + [66747] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130593,7 +130595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_switch_block, STATE(1952), 1, sym_text_interpolation, - [66762] = 5, + [66766] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130605,7 +130607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4041), 2, anon_sym_COMMA, anon_sym_RBRACK, - [66779] = 6, + [66783] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130618,7 +130620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1983), 1, aux_sym__array_destructing_repeat1, - [66798] = 6, + [66802] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130631,7 +130633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1985), 1, aux_sym_array_creation_expression_repeat1, - [66817] = 6, + [66821] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130644,7 +130646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1986), 1, aux_sym__array_destructing_repeat1, - [66836] = 6, + [66840] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130657,7 +130659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2008), 1, aux_sym_arguments_repeat1, - [66855] = 6, + [66859] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130670,7 +130672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1987), 1, aux_sym_attribute_group_repeat1, - [66874] = 6, + [66878] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -130683,7 +130685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2391), 1, sym_heredoc_body, - [66893] = 6, + [66897] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130696,7 +130698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2628), 1, sym_readonly_modifier, - [66912] = 6, + [66916] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130709,7 +130711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2616), 1, sym_readonly_modifier, - [66931] = 6, + [66935] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130722,7 +130724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1974), 1, aux_sym_formal_parameters_repeat1, - [66950] = 6, + [66954] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130735,7 +130737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2520), 1, sym_readonly_modifier, - [66969] = 6, + [66973] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130748,7 +130750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1991), 1, sym_static_variable_declaration, - [66988] = 5, + [66992] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -130760,7 +130762,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1993), 2, sym_dynamic_variable_name, sym_variable_name, - [67005] = 4, + [67009] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130771,7 +130773,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67020] = 6, + [67024] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -130784,7 +130786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2293), 1, sym_heredoc_body, - [67039] = 6, + [67043] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130797,7 +130799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2450), 1, sym_namespace_use_group, - [67058] = 6, + [67062] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130810,7 +130812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1998), 1, sym_variable_name, - [67077] = 6, + [67081] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130823,7 +130825,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_group_repeat1, STATE(1970), 1, sym_text_interpolation, - [67096] = 6, + [67100] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130836,7 +130838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(1971), 1, sym_text_interpolation, - [67115] = 6, + [67119] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130849,7 +130851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2000), 1, aux_sym_formal_parameters_repeat1, - [67134] = 6, + [67138] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130862,7 +130864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2154), 1, sym_switch_block, - [67153] = 6, + [67157] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130875,7 +130877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2062), 1, aux_sym_formal_parameters_repeat1, - [67172] = 5, + [67176] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130887,7 +130889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4101), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67189] = 6, + [67193] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130900,7 +130902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2493), 1, sym__return_type, - [67208] = 6, + [67212] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130913,7 +130915,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_intersection_type_repeat1, STATE(1977), 1, sym_text_interpolation, - [67227] = 6, + [67231] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130926,7 +130928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2489), 1, sym__return_type, - [67246] = 6, + [67250] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130939,7 +130941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2022), 1, aux_sym_array_creation_expression_repeat1, - [67265] = 4, + [67269] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130950,7 +130952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [67280] = 6, + [67284] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -130963,7 +130965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__list_destructing_repeat1, STATE(1981), 1, sym_text_interpolation, - [67299] = 6, + [67303] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -130976,7 +130978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2035), 1, aux_sym__list_destructing_repeat1, - [67318] = 6, + [67322] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -130989,7 +130991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(1986), 1, aux_sym__array_destructing_repeat1, - [67337] = 6, + [67341] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(787), 1, @@ -131002,7 +131004,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(1984), 1, sym_text_interpolation, - [67356] = 6, + [67360] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(783), 1, @@ -131015,7 +131017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2040), 1, aux_sym_array_creation_expression_repeat1, - [67375] = 5, + [67379] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131027,7 +131029,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1986), 2, sym_text_interpolation, aux_sym__array_destructing_repeat1, - [67392] = 6, + [67396] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131040,7 +131042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2041), 1, aux_sym_attribute_group_repeat1, - [67411] = 6, + [67415] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131053,7 +131055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2046), 1, aux_sym_arguments_repeat1, - [67430] = 6, + [67434] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131066,7 +131068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2525), 1, sym__return_type, - [67449] = 6, + [67453] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131079,7 +131081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2526), 1, sym__return_type, - [67468] = 4, + [67472] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131090,7 +131092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67483] = 6, + [67487] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131103,7 +131105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2038), 1, aux_sym_match_block_repeat1, - [67502] = 4, + [67506] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131114,7 +131116,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67517] = 6, + [67521] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131127,7 +131129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2414), 1, sym_namespace_use_group, - [67536] = 6, + [67540] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131140,7 +131142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2414), 1, sym_namespace_use_group, - [67555] = 4, + [67559] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131151,7 +131153,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67570] = 4, + [67574] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131162,7 +131164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67585] = 5, + [67589] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131174,7 +131176,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4144), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67602] = 5, + [67606] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131186,7 +131188,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4148), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67619] = 6, + [67623] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131199,7 +131201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2062), 1, aux_sym_formal_parameters_repeat1, - [67638] = 6, + [67642] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131212,7 +131214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2063), 1, sym_variable_name, - [67657] = 5, + [67661] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131224,7 +131226,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4156), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67674] = 6, + [67678] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131237,7 +131239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2064), 1, sym_variable_name, - [67693] = 5, + [67697] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131249,7 +131251,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4162), 2, anon_sym_COMMA, anon_sym_RPAREN, - [67710] = 6, + [67714] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131262,7 +131264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2439), 1, sym_nowdoc_body, - [67729] = 6, + [67733] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131275,7 +131277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2434), 1, sym_heredoc_body, - [67748] = 5, + [67752] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1210), 1, @@ -131287,7 +131289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1208), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67765] = 6, + [67769] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(799), 1, @@ -131300,7 +131302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2093), 1, aux_sym_arguments_repeat1, - [67784] = 5, + [67788] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1282), 1, @@ -131312,7 +131314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1280), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67801] = 6, + [67805] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131325,7 +131327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2529), 1, sym__return_type, - [67820] = 5, + [67824] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1270), 1, @@ -131337,7 +131339,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1268), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67837] = 5, + [67841] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1366), 1, @@ -131349,7 +131351,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1364), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67854] = 5, + [67858] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1158), 1, @@ -131361,7 +131363,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1156), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67871] = 5, + [67875] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1162), 1, @@ -131373,7 +131375,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1160), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67888] = 5, + [67892] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1186), 1, @@ -131385,7 +131387,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67905] = 5, + [67909] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1186), 1, @@ -131397,7 +131399,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1184), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67922] = 5, + [67926] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1286), 1, @@ -131409,7 +131411,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1284), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67939] = 4, + [67943] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131420,7 +131422,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [67954] = 5, + [67958] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1214), 1, @@ -131432,7 +131434,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1212), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [67971] = 6, + [67975] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131445,7 +131447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2074), 1, aux_sym_base_clause_repeat1, - [67990] = 5, + [67994] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1218), 1, @@ -131457,7 +131459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1216), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68007] = 6, + [68011] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(801), 1, @@ -131470,7 +131472,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_creation_expression_repeat1, STATE(2022), 1, sym_text_interpolation, - [68026] = 5, + [68030] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1250), 1, @@ -131482,7 +131484,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68043] = 6, + [68047] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131495,7 +131497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2076), 1, aux_sym_unset_statement_repeat1, - [68062] = 5, + [68066] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1250), 1, @@ -131507,7 +131509,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1248), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68079] = 5, + [68083] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131519,7 +131521,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4178), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [68096] = 6, + [68100] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131532,7 +131534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2081), 1, aux_sym_match_block_repeat1, - [68115] = 5, + [68119] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1406), 1, @@ -131544,7 +131546,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1404), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68132] = 5, + [68136] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131556,7 +131558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4186), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68149] = 4, + [68153] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131567,7 +131569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68164] = 4, + [68168] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131578,7 +131580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [68179] = 5, + [68183] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1462), 1, @@ -131590,7 +131592,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1460), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68196] = 6, + [68200] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -131603,7 +131605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2035), 1, aux_sym__list_destructing_repeat1, - [68215] = 5, + [68219] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1442), 1, @@ -131615,7 +131617,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1440), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68232] = 5, + [68236] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131627,7 +131629,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2035), 2, sym_text_interpolation, aux_sym__list_destructing_repeat1, - [68249] = 5, + [68253] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131639,7 +131641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4197), 2, anon_sym_COMMA, anon_sym_RBRACK, - [68266] = 5, + [68270] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1438), 1, @@ -131651,7 +131653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1436), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68283] = 6, + [68287] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(815), 1, @@ -131664,7 +131666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2189), 1, aux_sym_match_block_repeat1, - [68302] = 4, + [68306] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131675,7 +131677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [68317] = 5, + [68321] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131687,7 +131689,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2040), 2, sym_text_interpolation, aux_sym_array_creation_expression_repeat1, - [68334] = 5, + [68338] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131699,7 +131701,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2041), 2, sym_text_interpolation, aux_sym_attribute_group_repeat1, - [68351] = 5, + [68355] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1434), 1, @@ -131711,7 +131713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1432), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68368] = 6, + [68372] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131724,7 +131726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2271), 1, sym_nowdoc_body, - [68387] = 6, + [68391] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -131737,7 +131739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2332), 1, sym_heredoc_body, - [68406] = 5, + [68410] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1418), 1, @@ -131749,7 +131751,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1416), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68423] = 6, + [68427] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(795), 1, @@ -131762,7 +131764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2093), 1, aux_sym_arguments_repeat1, - [68442] = 5, + [68446] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1394), 1, @@ -131774,7 +131776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1392), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68459] = 6, + [68463] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131787,7 +131789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2588), 1, sym__return_type, - [68478] = 5, + [68482] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1386), 1, @@ -131799,7 +131801,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1384), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68495] = 6, + [68499] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131812,7 +131814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2623), 1, sym__return_type, - [68514] = 5, + [68518] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1386), 1, @@ -131824,7 +131826,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1384), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68531] = 6, + [68535] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131837,7 +131839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2617), 1, sym__return_type, - [68550] = 5, + [68554] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1382), 1, @@ -131849,7 +131851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1380), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68567] = 6, + [68571] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131862,7 +131864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2307), 1, sym_namespace_use_group, - [68586] = 5, + [68590] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1358), 1, @@ -131874,7 +131876,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68603] = 6, + [68607] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131887,7 +131889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2121), 1, aux_sym_namespace_use_group_repeat1, - [68622] = 5, + [68626] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1358), 1, @@ -131899,7 +131901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1356), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68639] = 5, + [68643] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131911,7 +131913,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4225), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68656] = 5, + [68660] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1342), 1, @@ -131923,7 +131925,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1340), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68673] = 5, + [68677] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131935,7 +131937,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4229), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68690] = 5, + [68694] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1342), 1, @@ -131947,7 +131949,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1340), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68707] = 5, + [68711] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131959,7 +131961,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2062), 2, sym_text_interpolation, aux_sym_formal_parameters_repeat1, - [68724] = 5, + [68728] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131971,7 +131973,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4238), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68741] = 5, + [68745] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131983,7 +131985,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4242), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68758] = 5, + [68762] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -131995,7 +131997,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4246), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68775] = 5, + [68779] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1326), 1, @@ -132007,7 +132009,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1324), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68792] = 5, + [68796] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1306), 1, @@ -132019,7 +132021,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1304), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68809] = 6, + [68813] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132032,7 +132034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2147), 1, sym_variable_name, - [68828] = 5, + [68832] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1298), 1, @@ -132044,7 +132046,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1296), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68845] = 5, + [68849] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132056,7 +132058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4252), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68862] = 6, + [68866] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132069,7 +132071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2150), 1, aux_sym_anonymous_function_use_clause_repeat1, - [68881] = 6, + [68885] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132082,7 +132084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_element, STATE(2072), 1, sym_text_interpolation, - [68900] = 5, + [68904] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132094,7 +132096,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4260), 2, sym__automatic_semicolon, anon_sym_SEMI, - [68917] = 6, + [68921] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132107,7 +132109,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2074), 1, sym_text_interpolation, - [68936] = 5, + [68940] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1290), 1, @@ -132119,7 +132121,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1288), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [68953] = 5, + [68957] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132131,7 +132133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2076), 2, sym_text_interpolation, aux_sym_unset_statement_repeat1, - [68970] = 6, + [68974] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132144,7 +132146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2659), 1, sym_variable_name, - [68989] = 6, + [68993] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132157,7 +132159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2541), 1, sym_variable_name, - [69008] = 6, + [69012] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132170,7 +132172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2406), 1, sym_namespace_use_group, - [69027] = 5, + [69031] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1322), 1, @@ -132182,7 +132184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1320), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69044] = 6, + [69048] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(826), 1, @@ -132195,7 +132197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2189), 1, aux_sym_match_block_repeat1, - [69063] = 6, + [69067] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132208,7 +132210,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_unset_statement_repeat1, STATE(2082), 1, sym_text_interpolation, - [69082] = 6, + [69086] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132221,7 +132223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2190), 1, aux_sym_match_condition_list_repeat1, - [69101] = 6, + [69105] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -132234,7 +132236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2198), 1, aux_sym__list_destructing_repeat1, - [69120] = 5, + [69124] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1246), 1, @@ -132246,7 +132248,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1244), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69137] = 6, + [69141] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -132259,7 +132261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2194), 1, aux_sym__list_destructing_repeat1, - [69156] = 6, + [69160] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132272,7 +132274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2461), 1, sym_namespace_use_group, - [69175] = 6, + [69179] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132285,7 +132287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2461), 1, sym_namespace_use_group, - [69194] = 5, + [69198] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1242), 1, @@ -132297,7 +132299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1240), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69211] = 4, + [69215] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132308,7 +132310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69226] = 4, + [69230] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132319,7 +132321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [69241] = 6, + [69245] = 6, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -132332,7 +132334,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_nowdoc_body_repeat1, STATE(2092), 1, sym_text_interpolation, - [69260] = 5, + [69264] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132344,7 +132346,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2093), 2, sym_text_interpolation, aux_sym_arguments_repeat1, - [69277] = 5, + [69281] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1238), 1, @@ -132356,7 +132358,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1236), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69294] = 5, + [69298] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1222), 1, @@ -132368,7 +132370,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1220), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69311] = 5, + [69315] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1138), 1, @@ -132380,7 +132382,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1136), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69328] = 5, + [69332] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1138), 1, @@ -132392,7 +132394,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1136), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69345] = 5, + [69349] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1334), 1, @@ -132404,7 +132406,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1332), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69362] = 5, + [69366] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1142), 1, @@ -132416,7 +132418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1140), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69379] = 5, + [69383] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1182), 1, @@ -132428,7 +132430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69396] = 5, + [69400] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1182), 1, @@ -132440,7 +132442,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1180), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69413] = 5, + [69417] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1198), 1, @@ -132452,7 +132454,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1196), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69430] = 5, + [69434] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1202), 1, @@ -132464,7 +132466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1200), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69447] = 5, + [69451] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1206), 1, @@ -132476,7 +132478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1204), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69464] = 5, + [69468] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1374), 1, @@ -132488,7 +132490,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1372), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69481] = 5, + [69485] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1402), 1, @@ -132500,7 +132502,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1400), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69498] = 5, + [69502] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1414), 1, @@ -132512,7 +132514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1412), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69515] = 5, + [69519] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1470), 1, @@ -132524,7 +132526,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1468), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69532] = 5, + [69536] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1506), 1, @@ -132536,7 +132538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1504), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69549] = 5, + [69553] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1490), 1, @@ -132548,7 +132550,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1488), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69566] = 5, + [69570] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1370), 1, @@ -132560,7 +132562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1368), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69583] = 5, + [69587] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1494), 1, @@ -132572,7 +132574,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1492), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69600] = 5, + [69604] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1502), 1, @@ -132584,7 +132586,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1500), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69617] = 5, + [69621] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1486), 1, @@ -132596,7 +132598,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1484), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69634] = 5, + [69638] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1474), 1, @@ -132608,7 +132610,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1472), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69651] = 5, + [69655] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1454), 1, @@ -132620,7 +132622,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1452), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69668] = 6, + [69672] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132633,7 +132635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2331), 1, sym_namespace_use_group, - [69687] = 5, + [69691] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1422), 1, @@ -132645,7 +132647,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1420), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69704] = 5, + [69708] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1422), 1, @@ -132657,7 +132659,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1420), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69721] = 6, + [69725] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132670,7 +132672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2691), 1, sym__return_type, - [69740] = 6, + [69744] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132683,7 +132685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2207), 1, aux_sym_namespace_use_group_repeat1, - [69759] = 5, + [69763] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1354), 1, @@ -132695,7 +132697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1352), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69776] = 5, + [69780] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1130), 1, @@ -132707,7 +132709,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1128), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69793] = 5, + [69797] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1330), 1, @@ -132719,7 +132721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1328), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69810] = 5, + [69814] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1314), 1, @@ -132731,7 +132733,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1312), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69827] = 5, + [69831] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132743,7 +132745,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4296), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69844] = 5, + [69848] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1294), 1, @@ -132755,7 +132757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1292), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69861] = 4, + [69865] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132766,7 +132768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [69876] = 5, + [69880] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1254), 1, @@ -132778,7 +132780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1252), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69893] = 5, + [69897] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1226), 1, @@ -132790,7 +132792,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1224), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69910] = 5, + [69914] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1302), 1, @@ -132802,7 +132804,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1300), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69927] = 5, + [69931] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1378), 1, @@ -132814,7 +132816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1376), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69944] = 5, + [69948] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1390), 1, @@ -132826,7 +132828,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1388), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [69961] = 6, + [69965] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132839,7 +132841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2134), 1, sym_text_interpolation, - [69980] = 5, + [69984] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132851,7 +132853,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4308), 2, anon_sym_COMMA, anon_sym_RPAREN, - [69997] = 5, + [70001] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1482), 1, @@ -132863,7 +132865,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1480), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70014] = 5, + [70018] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1426), 1, @@ -132875,7 +132877,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1424), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70031] = 5, + [70035] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1174), 1, @@ -132887,7 +132889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1172), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70048] = 5, + [70052] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132899,7 +132901,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4312), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70065] = 5, + [70069] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1166), 1, @@ -132911,7 +132913,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1164), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70082] = 5, + [70086] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(306), 1, @@ -132923,7 +132925,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1867), 2, sym_dynamic_variable_name, sym_variable_name, - [70099] = 6, + [70103] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132936,7 +132938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2152), 1, aux_sym_arguments_repeat1, - [70118] = 5, + [70122] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1362), 1, @@ -132948,7 +132950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1360), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70135] = 5, + [70139] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1510), 1, @@ -132960,7 +132962,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1508), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70152] = 4, + [70156] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132971,7 +132973,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [70167] = 4, + [70171] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132982,7 +132984,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [70182] = 5, + [70186] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -132994,7 +132996,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4324), 2, anon_sym_COMMA, anon_sym_RPAREN, - [70199] = 5, + [70203] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1134), 1, @@ -133006,7 +133008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1132), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70216] = 5, + [70220] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1350), 1, @@ -133018,7 +133020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1348), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70233] = 6, + [70237] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133031,7 +133033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2205), 1, aux_sym_anonymous_function_use_clause_repeat1, - [70252] = 5, + [70256] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1338), 1, @@ -133043,7 +133045,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1336), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70269] = 6, + [70273] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(781), 1, @@ -133056,7 +133058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2152), 1, sym_text_interpolation, - [70288] = 6, + [70292] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133069,7 +133071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_property_element, STATE(2153), 1, sym_text_interpolation, - [70307] = 5, + [70311] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1190), 1, @@ -133081,7 +133083,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1188), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70324] = 5, + [70328] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1154), 1, @@ -133093,7 +133095,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1152), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70341] = 5, + [70345] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1150), 1, @@ -133105,7 +133107,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1148), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70358] = 5, + [70362] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1146), 1, @@ -133117,7 +133119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1144), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70375] = 5, + [70379] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1170), 1, @@ -133129,7 +133131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1168), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70392] = 5, + [70396] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1194), 1, @@ -133141,7 +133143,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1192), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70409] = 6, + [70413] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133154,7 +133156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2203), 1, sym_property_element, - [70428] = 5, + [70432] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1230), 1, @@ -133166,7 +133168,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1228), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70445] = 5, + [70449] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1258), 1, @@ -133178,7 +133180,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1256), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70462] = 5, + [70466] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1262), 1, @@ -133190,7 +133192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1260), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70479] = 5, + [70483] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1266), 1, @@ -133202,7 +133204,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1264), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70496] = 5, + [70500] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1274), 1, @@ -133214,7 +133216,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1272), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70513] = 5, + [70517] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1398), 1, @@ -133226,7 +133228,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1396), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70530] = 5, + [70534] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1466), 1, @@ -133238,7 +133240,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1464), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70547] = 5, + [70551] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1450), 1, @@ -133250,7 +133252,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70564] = 5, + [70568] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1446), 1, @@ -133262,7 +133264,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1444), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70581] = 5, + [70585] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1430), 1, @@ -133274,7 +133276,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1428), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70598] = 5, + [70602] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1318), 1, @@ -133286,7 +133288,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1316), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70615] = 5, + [70619] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1310), 1, @@ -133298,7 +133300,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1308), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70632] = 4, + [70636] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133309,7 +133311,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [70647] = 5, + [70651] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1278), 1, @@ -133321,7 +133323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1276), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70664] = 5, + [70668] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1234), 1, @@ -133333,7 +133335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1232), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70681] = 5, + [70685] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1478), 1, @@ -133345,7 +133347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1476), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70698] = 5, + [70702] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1458), 1, @@ -133357,7 +133359,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1456), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70715] = 4, + [70719] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133368,7 +133370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [70730] = 4, + [70734] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133379,7 +133381,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [70745] = 5, + [70749] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1346), 1, @@ -133391,7 +133393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1344), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70762] = 5, + [70766] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133403,7 +133405,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4334), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70779] = 5, + [70783] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1498), 1, @@ -133415,7 +133417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1496), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70796] = 4, + [70800] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133426,7 +133428,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, sym_name, - [70811] = 5, + [70815] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1178), 1, @@ -133438,7 +133440,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [70828] = 6, + [70832] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(793), 1, @@ -133451,7 +133453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2185), 1, sym_text_interpolation, - [70847] = 6, + [70851] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133464,7 +133466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2192), 1, aux_sym_arguments_repeat1, - [70866] = 5, + [70870] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133476,7 +133478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4344), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [70883] = 6, + [70887] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133489,7 +133491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2188), 1, sym_text_interpolation, - [70902] = 5, + [70906] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133501,7 +133503,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2189), 2, sym_text_interpolation, aux_sym_match_block_repeat1, - [70919] = 5, + [70923] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133513,7 +133515,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2190), 2, sym_text_interpolation, aux_sym_match_condition_list_repeat1, - [70936] = 4, + [70940] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133524,7 +133526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [70951] = 6, + [70955] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(791), 1, @@ -133537,7 +133539,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2192), 1, sym_text_interpolation, - [70970] = 5, + [70974] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133549,7 +133551,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4366), 2, sym__automatic_semicolon, anon_sym_SEMI, - [70987] = 6, + [70991] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -133562,7 +133564,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__list_destructing_repeat1, STATE(2194), 1, sym_text_interpolation, - [71006] = 6, + [71010] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(807), 1, @@ -133575,7 +133577,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2195), 1, sym_text_interpolation, - [71025] = 4, + [71029] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133586,7 +133588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71040] = 6, + [71044] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133599,7 +133601,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2197), 1, sym_text_interpolation, - [71059] = 6, + [71063] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(832), 1, @@ -133612,7 +133614,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__list_destructing_repeat1, STATE(2198), 1, sym_text_interpolation, - [71078] = 4, + [71082] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133623,7 +133625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71093] = 4, + [71097] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133634,7 +133636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [71108] = 6, + [71112] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133647,7 +133649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2204), 1, aux_sym_arguments_repeat1, - [71127] = 4, + [71131] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133658,7 +133660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - [71142] = 4, + [71146] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133669,7 +133671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [71157] = 6, + [71161] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(773), 1, @@ -133682,7 +133684,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2204), 1, sym_text_interpolation, - [71176] = 5, + [71180] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133694,7 +133696,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2205), 2, sym_text_interpolation, aux_sym_anonymous_function_use_clause_repeat1, - [71193] = 5, + [71197] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133706,7 +133708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4395), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71210] = 5, + [71214] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133718,7 +133720,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2207), 2, sym_text_interpolation, aux_sym_namespace_use_group_repeat1, - [71227] = 6, + [71231] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133731,7 +133733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2209), 1, aux_sym_arguments_repeat1, - [71246] = 6, + [71250] = 6, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(769), 1, @@ -133744,7 +133746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_arguments_repeat1, STATE(2209), 1, sym_text_interpolation, - [71265] = 4, + [71269] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133754,7 +133756,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2531), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71279] = 5, + [71283] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133765,7 +133767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2211), 1, sym_text_interpolation, - [71295] = 5, + [71299] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(449), 1, @@ -133776,7 +133778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_php_tag, STATE(2212), 1, sym_text_interpolation, - [71311] = 5, + [71315] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133787,7 +133789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2213), 1, sym_text_interpolation, - [71327] = 4, + [71331] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133797,7 +133799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4412), 2, sym__eof, sym_php_tag, - [71341] = 4, + [71345] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133807,7 +133809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4414), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71355] = 4, + [71359] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133817,7 +133819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4416), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71369] = 5, + [71373] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133828,7 +133830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2217), 1, sym_text_interpolation, - [71385] = 5, + [71389] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133839,7 +133841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2654), 1, sym_namespace_name, - [71401] = 4, + [71405] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133849,7 +133851,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4421), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71415] = 4, + [71419] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133859,7 +133861,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4423), 2, anon_sym_LBRACE, anon_sym_COLON, - [71429] = 4, + [71433] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133869,7 +133871,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4393), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71443] = 5, + [71447] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133880,7 +133882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2222), 1, sym_text_interpolation, - [71459] = 4, + [71463] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133890,7 +133892,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4425), 2, anon_sym_LBRACE, anon_sym_COLON, - [71473] = 4, + [71477] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133900,7 +133902,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4427), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71487] = 4, + [71491] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133910,7 +133912,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4429), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71501] = 5, + [71505] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133921,7 +133923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2629), 1, sym_namespace_name, - [71517] = 5, + [71521] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133932,7 +133934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2227), 1, sym_text_interpolation, - [71533] = 4, + [71537] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133942,7 +133944,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4433), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71547] = 4, + [71551] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133952,7 +133954,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4402), 2, anon_sym_COMMA, anon_sym_RBRACE, - [71561] = 4, + [71565] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133962,7 +133964,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4435), 2, anon_sym_COMMA, anon_sym_RBRACE, - [71575] = 5, + [71579] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -133973,7 +133975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2231), 1, sym_text_interpolation, - [71591] = 5, + [71595] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133984,7 +133986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2232), 1, sym_text_interpolation, - [71607] = 5, + [71611] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -133995,7 +133997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2621), 1, sym_namespace_name, - [71623] = 5, + [71627] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134006,7 +134008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2234), 1, sym_text_interpolation, - [71639] = 5, + [71643] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134017,7 +134019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2235), 1, sym_text_interpolation, - [71655] = 5, + [71659] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134028,7 +134030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2236), 1, sym_text_interpolation, - [71671] = 5, + [71675] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134039,7 +134041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2237), 1, sym_text_interpolation, - [71687] = 5, + [71691] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134050,7 +134052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2238), 1, sym_text_interpolation, - [71703] = 5, + [71707] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134061,7 +134063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2239), 1, sym_text_interpolation, - [71719] = 5, + [71723] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134072,7 +134074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2240), 1, sym_text_interpolation, - [71735] = 5, + [71739] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134083,7 +134085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2241), 1, sym_text_interpolation, - [71751] = 5, + [71755] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134094,7 +134096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2242), 1, sym_text_interpolation, - [71767] = 4, + [71771] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134104,7 +134106,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2525), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71781] = 5, + [71785] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134115,7 +134117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2291), 1, sym_parenthesized_expression, - [71797] = 5, + [71801] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134126,7 +134128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2245), 1, sym_text_interpolation, - [71813] = 5, + [71817] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134137,7 +134139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_value, STATE(2246), 1, sym_text_interpolation, - [71829] = 4, + [71833] = 4, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134147,7 +134149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3957), 2, sym_heredoc_end, sym__new_line, - [71843] = 4, + [71847] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134157,7 +134159,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(483), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71857] = 5, + [71861] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134168,7 +134170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2249), 1, sym_text_interpolation, - [71873] = 5, + [71877] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -134179,7 +134181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2250), 1, sym_text_interpolation, - [71889] = 4, + [71893] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134189,7 +134191,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4445), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71903] = 4, + [71907] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134199,7 +134201,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71917] = 5, + [71921] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134210,7 +134212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2253), 1, sym_text_interpolation, - [71933] = 4, + [71937] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134220,7 +134222,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4447), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71947] = 4, + [71951] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134230,7 +134232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4366), 2, sym__automatic_semicolon, anon_sym_SEMI, - [71961] = 4, + [71965] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134240,7 +134242,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3333), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71975] = 4, + [71979] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134250,7 +134252,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4449), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71989] = 5, + [71993] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134261,7 +134263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2258), 1, sym_text_interpolation, - [72005] = 5, + [72009] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, @@ -134272,7 +134274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2259), 1, sym_text_interpolation, - [72021] = 4, + [72025] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134282,7 +134284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4451), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72035] = 4, + [72039] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134292,7 +134294,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4453), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72049] = 4, + [72053] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134302,7 +134304,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4355), 2, anon_sym_COMMA, anon_sym_RBRACE, - [72063] = 5, + [72067] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134313,7 +134315,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2263), 1, sym_text_interpolation, - [72079] = 4, + [72083] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134323,7 +134325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3803), 2, anon_sym_EQ, anon_sym_RPAREN, - [72093] = 4, + [72097] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134333,7 +134335,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4459), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72107] = 4, + [72111] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134343,7 +134345,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4461), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72121] = 4, + [72125] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134353,7 +134355,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4463), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72135] = 5, + [72139] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134364,7 +134366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2547), 1, sym_namespace_name, - [72151] = 5, + [72155] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134375,7 +134377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2269), 1, sym_text_interpolation, - [72167] = 5, + [72171] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134386,7 +134388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2270), 1, sym_text_interpolation, - [72183] = 5, + [72187] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134397,7 +134399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2271), 1, sym_text_interpolation, - [72199] = 5, + [72203] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134408,7 +134410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2586), 1, sym_namespace_name, - [72215] = 5, + [72219] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134419,7 +134421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2273), 1, sym_text_interpolation, - [72231] = 5, + [72235] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134430,7 +134432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2274), 1, sym_text_interpolation, - [72247] = 4, + [72251] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134440,7 +134442,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, anon_sym_SEMI, anon_sym_RPAREN, - [72261] = 5, + [72265] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134451,7 +134453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2276), 1, sym_text_interpolation, - [72277] = 5, + [72281] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134462,7 +134464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2277), 1, sym_text_interpolation, - [72293] = 5, + [72297] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134473,7 +134475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2312), 1, aux_sym_namespace_name_repeat1, - [72309] = 5, + [72313] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -134484,7 +134486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2279), 1, sym_text_interpolation, - [72325] = 4, + [72329] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134494,7 +134496,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4474), 2, anon_sym_LBRACE, anon_sym_COLON, - [72339] = 4, + [72343] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134504,7 +134506,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4476), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72353] = 5, + [72357] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134515,7 +134517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2282), 1, sym_text_interpolation, - [72369] = 5, + [72373] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134526,7 +134528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2283), 1, sym_text_interpolation, - [72385] = 4, + [72389] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134536,7 +134538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4482), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72399] = 4, + [72403] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134546,7 +134548,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4142), 2, anon_sym_COMMA, anon_sym_RBRACE, - [72413] = 4, + [72417] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134556,7 +134558,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4484), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72427] = 4, + [72431] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134566,7 +134568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2419), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72441] = 5, + [72445] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134577,7 +134579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2288), 1, sym_text_interpolation, - [72457] = 4, + [72461] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134587,7 +134589,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4486), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72471] = 5, + [72475] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134598,7 +134600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2290), 1, sym_text_interpolation, - [72487] = 5, + [72491] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134609,7 +134611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_block, STATE(2291), 1, sym_text_interpolation, - [72503] = 5, + [72507] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134620,7 +134622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2292), 1, sym_text_interpolation, - [72519] = 5, + [72523] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -134631,7 +134633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2293), 1, sym_text_interpolation, - [72535] = 4, + [72539] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134641,7 +134643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4494), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72549] = 5, + [72553] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -134652,7 +134654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2295), 1, sym_text_interpolation, - [72565] = 5, + [72569] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134663,7 +134665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2296), 1, sym_text_interpolation, - [72581] = 5, + [72585] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134674,7 +134676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2297), 1, sym_text_interpolation, - [72597] = 5, + [72601] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134685,7 +134687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2337), 1, sym_parenthesized_expression, - [72613] = 5, + [72617] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134696,7 +134698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2299), 1, sym_text_interpolation, - [72629] = 4, + [72633] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134706,7 +134708,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4496), 2, anon_sym_COMMA, anon_sym_RPAREN, - [72643] = 4, + [72647] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134716,7 +134718,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4498), 2, anon_sym_COMMA, anon_sym_RBRACK, - [72657] = 5, + [72661] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134727,7 +134729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2302), 1, sym_text_interpolation, - [72673] = 4, + [72677] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134737,7 +134739,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2481), 2, anon_sym_SEMI, anon_sym_RPAREN, - [72687] = 5, + [72691] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134748,7 +134750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2304), 1, sym_text_interpolation, - [72703] = 4, + [72707] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134758,7 +134760,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4503), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72717] = 4, + [72721] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134768,7 +134770,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3799), 2, anon_sym_COMMA, anon_sym_RBRACE, - [72731] = 4, + [72735] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134778,7 +134780,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4505), 2, sym__automatic_semicolon, anon_sym_SEMI, - [72745] = 5, + [72749] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134789,7 +134791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2308), 1, sym_text_interpolation, - [72761] = 5, + [72765] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134800,7 +134802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2309), 1, sym_text_interpolation, - [72777] = 5, + [72781] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134811,7 +134813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2310), 1, sym_text_interpolation, - [72793] = 5, + [72797] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134822,7 +134824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2311), 1, sym_text_interpolation, - [72809] = 5, + [72813] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134833,7 +134835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_name_repeat1, STATE(2312), 1, sym_text_interpolation, - [72825] = 5, + [72829] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(214), 1, @@ -134844,7 +134846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2313), 1, sym_text_interpolation, - [72841] = 5, + [72845] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134855,7 +134857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2314), 1, sym_text_interpolation, - [72857] = 5, + [72861] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134866,7 +134868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2315), 1, sym_text_interpolation, - [72873] = 5, + [72877] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134877,7 +134879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2316), 1, sym_text_interpolation, - [72889] = 5, + [72893] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134888,7 +134890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2317), 1, sym_text_interpolation, - [72905] = 5, + [72909] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134899,7 +134901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2318), 1, sym_text_interpolation, - [72921] = 5, + [72925] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134910,7 +134912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2319), 1, sym_text_interpolation, - [72937] = 5, + [72941] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -134921,7 +134923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2320), 1, sym_text_interpolation, - [72953] = 5, + [72957] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134932,7 +134934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2321), 1, sym_text_interpolation, - [72969] = 5, + [72973] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134943,7 +134945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2515), 1, sym_namespace_name, - [72985] = 5, + [72989] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134954,7 +134956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2323), 1, sym_text_interpolation, - [73001] = 5, + [73005] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134965,7 +134967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2324), 1, sym_text_interpolation, - [73017] = 5, + [73021] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134976,7 +134978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2325), 1, sym_text_interpolation, - [73033] = 5, + [73037] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134987,7 +134989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2326), 1, sym_text_interpolation, - [73049] = 4, + [73053] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -134997,7 +134999,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4514), 2, anon_sym_string, anon_sym_int, - [73063] = 5, + [73067] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135008,7 +135010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2456), 1, sym_variable_name, - [73079] = 4, + [73083] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135018,7 +135020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4290), 2, anon_sym_COMMA, anon_sym_RPAREN, - [73093] = 5, + [73097] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135029,7 +135031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2330), 1, sym_text_interpolation, - [73109] = 4, + [73113] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135039,7 +135041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3955), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73123] = 5, + [73127] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -135050,7 +135052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2332), 1, sym_text_interpolation, - [73139] = 5, + [73143] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135061,7 +135063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2333), 1, sym_text_interpolation, - [73155] = 5, + [73159] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135072,7 +135074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2390), 1, sym_parenthesized_expression, - [73171] = 4, + [73175] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135082,7 +135084,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3277), 2, anon_sym_COMMA, anon_sym_RBRACK, - [73185] = 4, + [73189] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135092,7 +135094,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4522), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73199] = 5, + [73203] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135103,7 +135105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_match_block, STATE(2337), 1, sym_text_interpolation, - [73215] = 5, + [73219] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135114,7 +135116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2338), 1, sym_text_interpolation, - [73231] = 5, + [73235] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135125,7 +135127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2339), 1, sym_text_interpolation, - [73247] = 5, + [73251] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135136,7 +135138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2340), 1, sym_text_interpolation, - [73263] = 4, + [73267] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135146,7 +135148,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4526), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73277] = 5, + [73281] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135157,7 +135159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2342), 1, sym_text_interpolation, - [73293] = 4, + [73297] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135167,7 +135169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4197), 2, anon_sym_COMMA, anon_sym_RBRACK, - [73307] = 4, + [73311] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135177,7 +135179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4528), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73321] = 4, + [73325] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135187,7 +135189,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4530), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73335] = 5, + [73339] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135198,7 +135200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2346), 1, sym_text_interpolation, - [73351] = 4, + [73355] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135208,7 +135210,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4532), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73365] = 4, + [73369] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135218,7 +135220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(455), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73379] = 5, + [73383] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135229,7 +135231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2349), 1, sym_text_interpolation, - [73395] = 5, + [73399] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135240,7 +135242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2350), 1, sym_text_interpolation, - [73411] = 5, + [73415] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135251,7 +135253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2351), 1, sym_text_interpolation, - [73427] = 5, + [73431] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135262,7 +135264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2352), 1, sym_text_interpolation, - [73443] = 4, + [73447] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135272,7 +135274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4534), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73457] = 4, + [73461] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135282,7 +135284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(443), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73471] = 5, + [73475] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135293,7 +135295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2355), 1, sym_text_interpolation, - [73487] = 5, + [73491] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135304,7 +135306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2356), 1, sym_text_interpolation, - [73503] = 4, + [73507] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135314,7 +135316,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4536), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73517] = 4, + [73521] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135324,7 +135326,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4538), 2, anon_sym_string, anon_sym_int, - [73531] = 5, + [73535] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135335,7 +135337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2359), 1, sym_text_interpolation, - [73547] = 4, + [73551] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135345,7 +135347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4544), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73561] = 5, + [73565] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135356,7 +135358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2361), 1, sym_text_interpolation, - [73577] = 5, + [73581] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135367,7 +135369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2362), 1, sym_text_interpolation, - [73593] = 5, + [73597] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(457), 1, @@ -135378,7 +135380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_colon_block, STATE(2363), 1, sym_text_interpolation, - [73609] = 5, + [73613] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135389,7 +135391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2364), 1, sym_text_interpolation, - [73625] = 5, + [73629] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135400,7 +135402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2365), 1, sym_text_interpolation, - [73641] = 4, + [73645] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135410,7 +135412,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4546), 2, anon_sym_string, anon_sym_int, - [73655] = 4, + [73659] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135420,7 +135422,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4548), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73669] = 5, + [73673] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135431,7 +135433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2368), 1, sym_text_interpolation, - [73685] = 5, + [73689] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135442,7 +135444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2369), 1, sym_text_interpolation, - [73701] = 5, + [73705] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135453,7 +135455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2370), 1, sym_text_interpolation, - [73717] = 5, + [73721] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135464,7 +135466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2371), 1, sym_text_interpolation, - [73733] = 5, + [73737] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135475,7 +135477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2473), 1, sym_parenthesized_expression, - [73749] = 5, + [73753] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135486,7 +135488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2373), 1, sym_text_interpolation, - [73765] = 5, + [73769] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135497,7 +135499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2374), 1, sym_text_interpolation, - [73781] = 5, + [73785] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135508,7 +135510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2375), 1, sym_text_interpolation, - [73797] = 5, + [73801] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135519,7 +135521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2376), 1, sym_text_interpolation, - [73813] = 5, + [73817] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135530,7 +135532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2377), 1, sym_text_interpolation, - [73829] = 5, + [73833] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135541,7 +135543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2378), 1, sym_text_interpolation, - [73845] = 5, + [73849] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135552,7 +135554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2379), 1, sym_text_interpolation, - [73861] = 4, + [73865] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135562,7 +135564,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4550), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73875] = 4, + [73879] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135572,7 +135574,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4124), 2, anon_sym_COMMA, anon_sym_RBRACK, - [73889] = 5, + [73893] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135583,7 +135585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2382), 1, sym_text_interpolation, - [73905] = 5, + [73909] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135594,7 +135596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2383), 1, sym_text_interpolation, - [73921] = 4, + [73925] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135604,7 +135606,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1663), 2, anon_sym_COMMA, anon_sym_RBRACK, - [73935] = 4, + [73939] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135614,7 +135616,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4552), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73949] = 5, + [73953] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135625,7 +135627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2386), 1, sym_text_interpolation, - [73965] = 5, + [73969] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135636,7 +135638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2387), 1, sym_text_interpolation, - [73981] = 4, + [73985] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135646,7 +135648,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4554), 2, sym__automatic_semicolon, anon_sym_SEMI, - [73995] = 4, + [73999] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135656,7 +135658,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4556), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74009] = 4, + [74013] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135666,7 +135668,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4558), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74023] = 5, + [74027] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -135677,7 +135679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2391), 1, sym_text_interpolation, - [74039] = 5, + [74043] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135688,7 +135690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2392), 1, sym_text_interpolation, - [74055] = 5, + [74059] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135699,7 +135701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2393), 1, sym_text_interpolation, - [74071] = 5, + [74075] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135710,7 +135712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2394), 1, sym_text_interpolation, - [74087] = 5, + [74091] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135721,7 +135723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2395), 1, sym_text_interpolation, - [74103] = 5, + [74107] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135732,7 +135734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2396), 1, sym_text_interpolation, - [74119] = 5, + [74123] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135743,7 +135745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2397), 1, sym_text_interpolation, - [74135] = 5, + [74139] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135754,7 +135756,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2398), 1, sym_text_interpolation, - [74151] = 5, + [74155] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135765,7 +135767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2399), 1, sym_text_interpolation, - [74167] = 5, + [74171] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135776,7 +135778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2400), 1, sym_text_interpolation, - [74183] = 5, + [74187] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135787,7 +135789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2401), 1, sym_text_interpolation, - [74199] = 4, + [74203] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135797,7 +135799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4568), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74213] = 4, + [74217] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135807,7 +135809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4570), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74227] = 5, + [74231] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135818,7 +135820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2404), 1, sym_text_interpolation, - [74243] = 4, + [74247] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135828,7 +135830,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4572), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74257] = 4, + [74261] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135838,7 +135840,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4574), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74271] = 4, + [74275] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135848,7 +135850,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4236), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74285] = 5, + [74289] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135859,7 +135861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2408), 1, sym_text_interpolation, - [74301] = 5, + [74305] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135870,7 +135872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2409), 1, sym_text_interpolation, - [74317] = 5, + [74321] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(361), 1, @@ -135881,7 +135883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_text_interpolation, STATE(2561), 1, sym_colon_block, - [74333] = 4, + [74337] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135891,7 +135893,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4576), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74347] = 5, + [74351] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135902,7 +135904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2412), 1, sym_text_interpolation, - [74363] = 5, + [74367] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135913,7 +135915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2413), 1, sym_text_interpolation, - [74379] = 4, + [74383] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135923,7 +135925,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4580), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74393] = 5, + [74397] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135934,7 +135936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2415), 1, sym_text_interpolation, - [74409] = 5, + [74413] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135945,7 +135947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2416), 1, sym_text_interpolation, - [74425] = 5, + [74429] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135956,7 +135958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2417), 1, sym_text_interpolation, - [74441] = 5, + [74445] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -135967,7 +135969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2418), 1, sym_text_interpolation, - [74457] = 5, + [74461] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135978,7 +135980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2419), 1, sym_text_interpolation, - [74473] = 4, + [74477] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135988,7 +135990,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2547), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74487] = 5, + [74491] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -135999,7 +136001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2421), 1, sym_text_interpolation, - [74503] = 5, + [74507] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136010,7 +136012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2422), 1, sym_text_interpolation, - [74519] = 5, + [74523] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136021,7 +136023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2423), 1, sym_text_interpolation, - [74535] = 5, + [74539] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136032,7 +136034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2424), 1, sym_text_interpolation, - [74551] = 4, + [74555] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136042,7 +136044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4582), 2, anon_sym_string, anon_sym_int, - [74565] = 5, + [74569] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136053,7 +136055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2426), 1, sym_text_interpolation, - [74581] = 5, + [74585] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136064,7 +136066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2427), 1, sym_text_interpolation, - [74597] = 4, + [74601] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136074,7 +136076,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4584), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74611] = 5, + [74615] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136085,7 +136087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_arguments, STATE(2429), 1, sym_text_interpolation, - [74627] = 5, + [74631] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136096,7 +136098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2430), 1, sym_text_interpolation, - [74643] = 5, + [74647] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136107,7 +136109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2431), 1, sym_text_interpolation, - [74659] = 4, + [74663] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136117,7 +136119,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2523), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74673] = 5, + [74677] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136128,7 +136130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2433), 1, sym_text_interpolation, - [74689] = 5, + [74693] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -136139,7 +136141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2434), 1, sym_text_interpolation, - [74705] = 5, + [74709] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136150,7 +136152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2435), 1, sym_text_interpolation, - [74721] = 4, + [74725] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136160,7 +136162,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3484), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74735] = 5, + [74739] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136171,7 +136173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2437), 1, sym_text_interpolation, - [74751] = 5, + [74755] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136182,7 +136184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2438), 1, sym_text_interpolation, - [74767] = 5, + [74771] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -136193,7 +136195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2439), 1, sym_text_interpolation, - [74783] = 4, + [74787] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136203,7 +136205,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4207), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74797] = 5, + [74801] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136214,7 +136216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2441), 1, sym_text_interpolation, - [74813] = 5, + [74817] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136225,7 +136227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2442), 1, sym_text_interpolation, - [74829] = 4, + [74833] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136235,7 +136237,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4594), 2, anon_sym_COMMA, anon_sym_RBRACK, - [74843] = 4, + [74847] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136245,7 +136247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4597), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74857] = 5, + [74861] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136256,7 +136258,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(2445), 1, sym_text_interpolation, - [74873] = 4, + [74877] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136266,7 +136268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74887] = 4, + [74891] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136276,7 +136278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4605), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74901] = 5, + [74905] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136287,7 +136289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2448), 1, sym_text_interpolation, - [74917] = 4, + [74921] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136297,7 +136299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1667), 2, anon_sym_COMMA, anon_sym_RPAREN, - [74931] = 4, + [74935] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136307,7 +136309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3949), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74945] = 5, + [74949] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136318,7 +136320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2451), 1, sym_text_interpolation, - [74961] = 5, + [74965] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136329,7 +136331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2452), 1, sym_text_interpolation, - [74977] = 4, + [74981] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136339,7 +136341,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3458), 2, sym__automatic_semicolon, anon_sym_SEMI, - [74991] = 4, + [74995] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136349,7 +136351,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4607), 2, anon_sym_SEMI, anon_sym_COLON, - [75005] = 5, + [75009] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136360,7 +136362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2455), 1, sym_text_interpolation, - [75021] = 4, + [75025] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136370,7 +136372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4609), 2, anon_sym_COMMA, anon_sym_RPAREN, - [75035] = 5, + [75039] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136381,7 +136383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2457), 1, sym_text_interpolation, - [75051] = 5, + [75055] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136392,7 +136394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2458), 1, sym_text_interpolation, - [75067] = 5, + [75071] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136403,7 +136405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2459), 1, sym_text_interpolation, - [75083] = 5, + [75087] = 5, ACTIONS(3), 1, anon_sym_QMARK_GT, ACTIONS(5), 1, @@ -136414,7 +136416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_value, STATE(2460), 1, sym_text_interpolation, - [75099] = 4, + [75103] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136424,7 +136426,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4615), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75113] = 4, + [75117] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136434,7 +136436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4617), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75127] = 5, + [75131] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136445,7 +136447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2463), 1, sym_text_interpolation, - [75143] = 5, + [75147] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136456,7 +136458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2464), 1, sym_text_interpolation, - [75159] = 5, + [75163] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136467,7 +136469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2465), 1, sym_text_interpolation, - [75175] = 5, + [75179] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136478,7 +136480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2466), 1, sym_text_interpolation, - [75191] = 5, + [75195] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136489,7 +136491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2467), 1, sym_text_interpolation, - [75207] = 5, + [75211] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136500,7 +136502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2468), 1, sym_text_interpolation, - [75223] = 5, + [75227] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136511,7 +136513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2469), 1, sym_text_interpolation, - [75239] = 5, + [75243] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136522,7 +136524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, STATE(2470), 1, sym_text_interpolation, - [75255] = 5, + [75259] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136533,7 +136535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2471), 1, sym_text_interpolation, - [75271] = 5, + [75275] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136544,7 +136546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2472), 1, sym_text_interpolation, - [75287] = 4, + [75291] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136554,7 +136556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4619), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75301] = 4, + [75305] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136564,7 +136566,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4621), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75315] = 5, + [75319] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136575,7 +136577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2475), 1, sym_text_interpolation, - [75331] = 4, + [75335] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136585,7 +136587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4623), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75345] = 4, + [75349] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136595,7 +136597,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2481), 2, sym__automatic_semicolon, anon_sym_SEMI, - [75359] = 5, + [75363] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(379), 1, @@ -136606,7 +136608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2478), 1, sym_text_interpolation, - [75375] = 5, + [75379] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136617,7 +136619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2479), 1, sym_text_interpolation, - [75391] = 5, + [75395] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136628,7 +136630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2480), 1, sym_text_interpolation, - [75407] = 4, + [75411] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136638,7 +136640,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4320), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [75421] = 5, + [75425] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136649,7 +136651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2482), 1, sym_text_interpolation, - [75437] = 5, + [75441] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136660,7 +136662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2483), 1, sym_text_interpolation, - [75453] = 5, + [75457] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136671,7 +136673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2484), 1, sym_text_interpolation, - [75469] = 5, + [75473] = 5, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136682,7 +136684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2485), 1, sym_text_interpolation, - [75485] = 4, + [75489] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136691,7 +136693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2486), 1, sym_text_interpolation, - [75498] = 4, + [75502] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(849), 1, @@ -136700,7 +136702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2487), 1, sym_text_interpolation, - [75511] = 4, + [75515] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136709,7 +136711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2488), 1, sym_text_interpolation, - [75524] = 4, + [75528] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136718,7 +136720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2489), 1, sym_text_interpolation, - [75537] = 4, + [75541] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136727,7 +136729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2490), 1, sym_text_interpolation, - [75550] = 4, + [75554] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136736,7 +136738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2491), 1, sym_text_interpolation, - [75563] = 4, + [75567] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(857), 1, @@ -136745,7 +136747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2492), 1, sym_text_interpolation, - [75576] = 4, + [75580] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136754,7 +136756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2493), 1, sym_text_interpolation, - [75589] = 4, + [75593] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136763,7 +136765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2494), 1, sym_text_interpolation, - [75602] = 4, + [75606] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(841), 1, @@ -136772,7 +136774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2495), 1, sym_text_interpolation, - [75615] = 4, + [75619] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136781,7 +136783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2496), 1, sym_text_interpolation, - [75628] = 4, + [75632] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(861), 1, @@ -136790,7 +136792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2497), 1, sym_text_interpolation, - [75641] = 4, + [75645] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136799,7 +136801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2498), 1, sym_text_interpolation, - [75654] = 4, + [75658] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136808,7 +136810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2499), 1, sym_text_interpolation, - [75667] = 4, + [75671] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136817,7 +136819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2500), 1, sym_text_interpolation, - [75680] = 4, + [75684] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136826,7 +136828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2501), 1, sym_text_interpolation, - [75693] = 4, + [75697] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136835,7 +136837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2502), 1, sym_text_interpolation, - [75706] = 4, + [75710] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136844,7 +136846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2503), 1, sym_text_interpolation, - [75719] = 4, + [75723] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136853,7 +136855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, STATE(2504), 1, sym_text_interpolation, - [75732] = 4, + [75736] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136862,7 +136864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2505), 1, sym_text_interpolation, - [75745] = 4, + [75749] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136871,7 +136873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2506), 1, sym_text_interpolation, - [75758] = 4, + [75762] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136880,7 +136882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2507), 1, sym_text_interpolation, - [75771] = 4, + [75775] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136889,7 +136891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2508), 1, sym_text_interpolation, - [75784] = 4, + [75788] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136898,7 +136900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2509), 1, sym_text_interpolation, - [75797] = 4, + [75801] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136907,7 +136909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2510), 1, sym_text_interpolation, - [75810] = 4, + [75814] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136916,7 +136918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2511), 1, sym_text_interpolation, - [75823] = 4, + [75827] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136925,7 +136927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2512), 1, sym_text_interpolation, - [75836] = 4, + [75840] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136934,7 +136936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, STATE(2513), 1, sym_text_interpolation, - [75849] = 4, + [75853] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136943,7 +136945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2514), 1, sym_text_interpolation, - [75862] = 4, + [75866] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136952,7 +136954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2515), 1, sym_text_interpolation, - [75875] = 4, + [75879] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136961,7 +136963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2516), 1, sym_text_interpolation, - [75888] = 4, + [75892] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136970,7 +136972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2517), 1, sym_text_interpolation, - [75901] = 4, + [75905] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136979,7 +136981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2518), 1, sym_text_interpolation, - [75914] = 4, + [75918] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136988,7 +136990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2519), 1, sym_text_interpolation, - [75927] = 4, + [75931] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -136997,7 +136999,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2520), 1, sym_text_interpolation, - [75940] = 4, + [75944] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137006,7 +137008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2521), 1, sym_text_interpolation, - [75953] = 4, + [75957] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137015,7 +137017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2522), 1, sym_text_interpolation, - [75966] = 4, + [75970] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137024,7 +137026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2523), 1, sym_text_interpolation, - [75979] = 4, + [75983] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137033,7 +137035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2524), 1, sym_text_interpolation, - [75992] = 4, + [75996] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137042,7 +137044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2525), 1, sym_text_interpolation, - [76005] = 4, + [76009] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137051,7 +137053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2526), 1, sym_text_interpolation, - [76018] = 4, + [76022] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137060,7 +137062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2527), 1, sym_text_interpolation, - [76031] = 4, + [76035] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137069,7 +137071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2528), 1, sym_text_interpolation, - [76044] = 4, + [76048] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137078,7 +137080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2529), 1, sym_text_interpolation, - [76057] = 4, + [76061] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137087,7 +137089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2530), 1, sym_text_interpolation, - [76070] = 4, + [76074] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137096,7 +137098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE2, STATE(2531), 1, sym_text_interpolation, - [76083] = 4, + [76087] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137105,7 +137107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE2, STATE(2532), 1, sym_text_interpolation, - [76096] = 4, + [76100] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137114,7 +137116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_foreach_statement_token2, STATE(2533), 1, sym_text_interpolation, - [76109] = 4, + [76113] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137123,7 +137125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2534), 1, sym_text_interpolation, - [76122] = 4, + [76126] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137132,7 +137134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2535), 1, sym_text_interpolation, - [76135] = 4, + [76139] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137141,7 +137143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2536), 1, sym_text_interpolation, - [76148] = 4, + [76152] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137150,7 +137152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2537), 1, sym_text_interpolation, - [76161] = 4, + [76165] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137159,7 +137161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2538), 1, sym_text_interpolation, - [76174] = 4, + [76178] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137168,7 +137170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2539), 1, sym_text_interpolation, - [76187] = 4, + [76191] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(867), 1, @@ -137177,7 +137179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2540), 1, sym_text_interpolation, - [76200] = 4, + [76204] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137186,7 +137188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2541), 1, sym_text_interpolation, - [76213] = 4, + [76217] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137195,7 +137197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, STATE(2542), 1, sym_text_interpolation, - [76226] = 4, + [76230] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137204,7 +137206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2543), 1, sym_text_interpolation, - [76239] = 4, + [76243] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137213,7 +137215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2544), 1, sym_text_interpolation, - [76252] = 4, + [76256] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(851), 1, @@ -137222,7 +137224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2545), 1, sym_text_interpolation, - [76265] = 4, + [76269] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137231,7 +137233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2546), 1, sym_text_interpolation, - [76278] = 4, + [76282] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137240,7 +137242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2547), 1, sym_text_interpolation, - [76291] = 4, + [76295] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137249,7 +137251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2548), 1, sym_text_interpolation, - [76304] = 4, + [76308] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(885), 1, @@ -137258,7 +137260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2549), 1, sym_text_interpolation, - [76317] = 4, + [76321] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137267,7 +137269,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token2, STATE(2550), 1, sym_text_interpolation, - [76330] = 4, + [76334] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137276,7 +137278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2551), 1, sym_text_interpolation, - [76343] = 4, + [76347] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137285,7 +137287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2552), 1, sym_text_interpolation, - [76356] = 4, + [76360] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137294,7 +137296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2553), 1, sym_text_interpolation, - [76369] = 4, + [76373] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137303,7 +137305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2554), 1, sym_text_interpolation, - [76382] = 4, + [76386] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137312,7 +137314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2555), 1, sym_text_interpolation, - [76395] = 4, + [76399] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137321,7 +137323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2556), 1, sym_text_interpolation, - [76408] = 4, + [76412] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137330,7 +137332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2557), 1, sym_text_interpolation, - [76421] = 4, + [76425] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137339,7 +137341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2558), 1, sym_text_interpolation, - [76434] = 4, + [76438] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137348,7 +137350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2559), 1, sym_text_interpolation, - [76447] = 4, + [76451] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137357,7 +137359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2560), 1, sym_text_interpolation, - [76460] = 4, + [76464] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137366,7 +137368,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, STATE(2561), 1, sym_text_interpolation, - [76473] = 4, + [76477] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137375,7 +137377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, STATE(2562), 1, sym_text_interpolation, - [76486] = 4, + [76490] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137384,7 +137386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2563), 1, sym_text_interpolation, - [76499] = 4, + [76503] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137393,7 +137395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2564), 1, sym_text_interpolation, - [76512] = 4, + [76516] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137402,7 +137404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2565), 1, sym_text_interpolation, - [76525] = 4, + [76529] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137411,7 +137413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2566), 1, sym_text_interpolation, - [76538] = 4, + [76542] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137420,7 +137422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_token2, STATE(2567), 1, sym_text_interpolation, - [76551] = 4, + [76555] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137429,7 +137431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2568), 1, sym_text_interpolation, - [76564] = 4, + [76568] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137438,7 +137440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2569), 1, sym_text_interpolation, - [76577] = 4, + [76581] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137447,7 +137449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2570), 1, sym_text_interpolation, - [76590] = 4, + [76594] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137456,7 +137458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2571), 1, sym_text_interpolation, - [76603] = 4, + [76607] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137465,7 +137467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE2, STATE(2572), 1, sym_text_interpolation, - [76616] = 4, + [76620] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137474,7 +137476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2573), 1, sym_text_interpolation, - [76629] = 4, + [76633] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137483,7 +137485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2574), 1, sym_text_interpolation, - [76642] = 4, + [76646] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137492,7 +137494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE2, STATE(2575), 1, sym_text_interpolation, - [76655] = 4, + [76659] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137501,7 +137503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2576), 1, sym_text_interpolation, - [76668] = 4, + [76672] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137510,7 +137512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2577), 1, sym_text_interpolation, - [76681] = 4, + [76685] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137519,7 +137521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token2, STATE(2578), 1, sym_text_interpolation, - [76694] = 4, + [76698] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137528,7 +137530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2579), 1, sym_text_interpolation, - [76707] = 4, + [76711] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137537,7 +137539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2580), 1, sym_text_interpolation, - [76720] = 4, + [76724] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137546,7 +137548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2581), 1, sym_text_interpolation, - [76733] = 4, + [76737] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137555,7 +137557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2582), 1, sym_text_interpolation, - [76746] = 4, + [76750] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137564,7 +137566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2583), 1, sym_text_interpolation, - [76759] = 4, + [76763] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137573,7 +137575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(2584), 1, sym_text_interpolation, - [76772] = 4, + [76776] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137582,7 +137584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2585), 1, sym_text_interpolation, - [76785] = 4, + [76789] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137591,7 +137593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2586), 1, sym_text_interpolation, - [76798] = 4, + [76802] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137600,7 +137602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2587), 1, sym_text_interpolation, - [76811] = 4, + [76815] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137609,7 +137611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2588), 1, sym_text_interpolation, - [76824] = 4, + [76828] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137618,7 +137620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2589), 1, sym_text_interpolation, - [76837] = 4, + [76841] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137627,7 +137629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2590), 1, sym_text_interpolation, - [76850] = 4, + [76854] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137636,7 +137638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2591), 1, sym_text_interpolation, - [76863] = 4, + [76867] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137645,7 +137647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2592), 1, sym_text_interpolation, - [76876] = 4, + [76880] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137654,7 +137656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2593), 1, sym_text_interpolation, - [76889] = 4, + [76893] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137663,7 +137665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2594), 1, sym_text_interpolation, - [76902] = 4, + [76906] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137672,7 +137674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, STATE(2595), 1, sym_text_interpolation, - [76915] = 4, + [76919] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137681,7 +137683,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2596), 1, sym_text_interpolation, - [76928] = 4, + [76932] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137690,7 +137692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2597), 1, sym_text_interpolation, - [76941] = 4, + [76945] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137699,7 +137701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2598), 1, sym_text_interpolation, - [76954] = 4, + [76958] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137708,7 +137710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2599), 1, sym_text_interpolation, - [76967] = 4, + [76971] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137717,7 +137719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2600), 1, sym_text_interpolation, - [76980] = 4, + [76984] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137726,7 +137728,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2601), 1, sym_text_interpolation, - [76993] = 4, + [76997] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137735,7 +137737,7 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, STATE(2602), 1, sym_text_interpolation, - [77006] = 4, + [77010] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137744,7 +137746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2603), 1, sym_text_interpolation, - [77019] = 4, + [77023] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137753,7 +137755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(2604), 1, sym_text_interpolation, - [77032] = 4, + [77036] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137762,7 +137764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2605), 1, sym_text_interpolation, - [77045] = 4, + [77049] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137771,7 +137773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2606), 1, sym_text_interpolation, - [77058] = 4, + [77062] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137780,7 +137782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2607), 1, sym_text_interpolation, - [77071] = 4, + [77075] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137789,7 +137791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token3, STATE(2608), 1, sym_text_interpolation, - [77084] = 4, + [77088] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137798,7 +137800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2609), 1, sym_text_interpolation, - [77097] = 4, + [77101] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137807,7 +137809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2610), 1, sym_text_interpolation, - [77110] = 4, + [77114] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137816,7 +137818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2611), 1, sym_text_interpolation, - [77123] = 4, + [77127] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137825,7 +137827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2612), 1, sym_text_interpolation, - [77136] = 4, + [77140] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137834,7 +137836,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token1, STATE(2613), 1, sym_text_interpolation, - [77149] = 4, + [77153] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137843,7 +137845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2614), 1, sym_text_interpolation, - [77162] = 4, + [77166] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137852,7 +137854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_start, STATE(2615), 1, sym_text_interpolation, - [77175] = 4, + [77179] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137861,7 +137863,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2616), 1, sym_text_interpolation, - [77188] = 4, + [77192] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137870,7 +137872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2617), 1, sym_text_interpolation, - [77201] = 4, + [77205] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137879,7 +137881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2618), 1, sym_text_interpolation, - [77214] = 4, + [77218] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137888,7 +137890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2619), 1, sym_text_interpolation, - [77227] = 4, + [77231] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137897,7 +137899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2620), 1, sym_text_interpolation, - [77240] = 4, + [77244] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137906,7 +137908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2621), 1, sym_text_interpolation, - [77253] = 4, + [77257] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137915,7 +137917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2622), 1, sym_text_interpolation, - [77266] = 4, + [77270] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137924,7 +137926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2623), 1, sym_text_interpolation, - [77279] = 4, + [77283] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137933,7 +137935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2624), 1, sym_text_interpolation, - [77292] = 4, + [77296] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137942,7 +137944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2625), 1, sym_text_interpolation, - [77305] = 4, + [77309] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137951,7 +137953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2626), 1, sym_text_interpolation, - [77318] = 4, + [77322] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137960,7 +137962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2627), 1, sym_text_interpolation, - [77331] = 4, + [77335] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137969,7 +137971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2628), 1, sym_text_interpolation, - [77344] = 4, + [77348] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137978,7 +137980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2629), 1, sym_text_interpolation, - [77357] = 4, + [77361] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137987,7 +137989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, STATE(2630), 1, sym_text_interpolation, - [77370] = 4, + [77374] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -137996,7 +137998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2631), 1, sym_text_interpolation, - [77383] = 4, + [77387] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138005,7 +138007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2632), 1, sym_text_interpolation, - [77396] = 4, + [77400] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(869), 1, @@ -138014,7 +138016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2633), 1, sym_text_interpolation, - [77409] = 4, + [77413] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138023,7 +138025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2634), 1, sym_text_interpolation, - [77422] = 4, + [77426] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138032,7 +138034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2635), 1, sym_text_interpolation, - [77435] = 4, + [77439] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138041,7 +138043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2636), 1, sym_text_interpolation, - [77448] = 4, + [77452] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138050,7 +138052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2637), 1, sym_text_interpolation, - [77461] = 4, + [77465] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(845), 1, @@ -138059,7 +138061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2638), 1, sym_text_interpolation, - [77474] = 4, + [77478] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138068,7 +138070,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_while_statement_token1, STATE(2639), 1, sym_text_interpolation, - [77487] = 4, + [77491] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138077,7 +138079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2640), 1, sym_text_interpolation, - [77500] = 4, + [77504] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138086,7 +138088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2641), 1, sym_text_interpolation, - [77513] = 4, + [77517] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138095,7 +138097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2642), 1, sym_text_interpolation, - [77526] = 4, + [77530] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138104,7 +138106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2643), 1, sym_text_interpolation, - [77539] = 4, + [77543] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138113,7 +138115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2644), 1, sym_text_interpolation, - [77552] = 4, + [77556] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138122,7 +138124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2645), 1, sym_text_interpolation, - [77565] = 4, + [77569] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138131,7 +138133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2646), 1, sym_text_interpolation, - [77578] = 4, + [77582] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138140,7 +138142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2647), 1, sym_text_interpolation, - [77591] = 4, + [77595] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138149,7 +138151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2648), 1, sym_text_interpolation, - [77604] = 4, + [77608] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138158,7 +138160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2649), 1, sym_text_interpolation, - [77617] = 4, + [77621] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138167,7 +138169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2650), 1, sym_text_interpolation, - [77630] = 4, + [77634] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138176,7 +138178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2651), 1, sym_text_interpolation, - [77643] = 4, + [77647] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138185,7 +138187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2652), 1, sym_text_interpolation, - [77656] = 4, + [77660] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138194,7 +138196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2653), 1, sym_text_interpolation, - [77669] = 4, + [77673] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138203,7 +138205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2654), 1, sym_text_interpolation, - [77682] = 4, + [77686] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138212,7 +138214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2655), 1, sym_text_interpolation, - [77695] = 4, + [77699] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138221,7 +138223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2656), 1, sym_text_interpolation, - [77708] = 4, + [77712] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138230,7 +138232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2657), 1, sym_text_interpolation, - [77721] = 4, + [77725] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138239,7 +138241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2658), 1, sym_text_interpolation, - [77734] = 4, + [77738] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138248,7 +138250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2659), 1, sym_text_interpolation, - [77747] = 4, + [77751] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138257,7 +138259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token3, STATE(2660), 1, sym_text_interpolation, - [77760] = 4, + [77764] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(881), 1, @@ -138266,7 +138268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2661), 1, sym_text_interpolation, - [77773] = 4, + [77777] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138275,7 +138277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2662), 1, sym_text_interpolation, - [77786] = 4, + [77790] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138284,7 +138286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2663), 1, sym_text_interpolation, - [77799] = 4, + [77803] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138293,7 +138295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2664), 1, sym_text_interpolation, - [77812] = 4, + [77816] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(877), 1, @@ -138302,7 +138304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2665), 1, sym_text_interpolation, - [77825] = 4, + [77829] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138311,7 +138313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2666), 1, sym_text_interpolation, - [77838] = 4, + [77842] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138320,7 +138322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2667), 1, sym_text_interpolation, - [77851] = 4, + [77855] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138329,7 +138331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(2668), 1, sym_text_interpolation, - [77864] = 4, + [77868] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138338,7 +138340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2669), 1, sym_text_interpolation, - [77877] = 4, + [77881] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138347,7 +138349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2670), 1, sym_text_interpolation, - [77890] = 4, + [77894] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138356,7 +138358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2671), 1, sym_text_interpolation, - [77903] = 4, + [77907] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138365,7 +138367,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token3, STATE(2672), 1, sym_text_interpolation, - [77916] = 4, + [77920] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138374,7 +138376,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__arrow_function_header_token1, STATE(2673), 1, sym_text_interpolation, - [77929] = 4, + [77933] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138383,7 +138385,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2674), 1, sym_text_interpolation, - [77942] = 4, + [77946] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138392,7 +138394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2675), 1, sym_text_interpolation, - [77955] = 4, + [77959] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138401,7 +138403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, STATE(2676), 1, sym_text_interpolation, - [77968] = 4, + [77972] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138410,7 +138412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2677), 1, sym_text_interpolation, - [77981] = 4, + [77985] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138419,7 +138421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2678), 1, sym_text_interpolation, - [77994] = 4, + [77998] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138428,7 +138430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2679), 1, sym_text_interpolation, - [78007] = 4, + [78011] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138437,7 +138439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2680), 1, sym_text_interpolation, - [78020] = 4, + [78024] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138446,7 +138448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2681), 1, sym_text_interpolation, - [78033] = 4, + [78037] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138455,7 +138457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2682), 1, sym_text_interpolation, - [78046] = 4, + [78050] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138464,7 +138466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2683), 1, sym_text_interpolation, - [78059] = 4, + [78063] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138473,7 +138475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2684), 1, sym_text_interpolation, - [78072] = 4, + [78076] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138482,7 +138484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2685), 1, sym_text_interpolation, - [78085] = 4, + [78089] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138491,7 +138493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2686), 1, sym_text_interpolation, - [78098] = 4, + [78102] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138500,7 +138502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2687), 1, sym_text_interpolation, - [78111] = 4, + [78115] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138509,7 +138511,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_foreach_statement_token2, STATE(2688), 1, sym_text_interpolation, - [78124] = 4, + [78128] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138518,7 +138520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2689), 1, sym_text_interpolation, - [78137] = 4, + [78141] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138527,7 +138529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2690), 1, sym_text_interpolation, - [78150] = 4, + [78154] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138536,7 +138538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2691), 1, sym_text_interpolation, - [78163] = 4, + [78167] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138545,7 +138547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2692), 1, sym_text_interpolation, - [78176] = 4, + [78180] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138554,7 +138556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2693), 1, sym_text_interpolation, - [78189] = 4, + [78193] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138563,7 +138565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2694), 1, sym_text_interpolation, - [78202] = 4, + [78206] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138572,7 +138574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2695), 1, sym_text_interpolation, - [78215] = 4, + [78219] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138581,7 +138583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2696), 1, sym_text_interpolation, - [78228] = 4, + [78232] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138590,7 +138592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2697), 1, sym_text_interpolation, - [78241] = 4, + [78245] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(859), 1, @@ -138599,7 +138601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(2698), 1, sym_text_interpolation, - [78254] = 4, + [78258] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138608,7 +138610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2699), 1, sym_text_interpolation, - [78267] = 4, + [78271] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138617,7 +138619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2700), 1, sym_text_interpolation, - [78280] = 4, + [78284] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138626,7 +138628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2701), 1, sym_text_interpolation, - [78293] = 4, + [78297] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138635,7 +138637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2702), 1, sym_text_interpolation, - [78306] = 4, + [78310] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138644,7 +138646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2703), 1, sym_text_interpolation, - [78319] = 4, + [78323] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138653,7 +138655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2704), 1, sym_text_interpolation, - [78332] = 4, + [78336] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138662,7 +138664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2705), 1, sym_text_interpolation, - [78345] = 4, + [78349] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138671,7 +138673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2706), 1, sym_text_interpolation, - [78358] = 4, + [78362] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138680,7 +138682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2707), 1, sym_text_interpolation, - [78371] = 4, + [78375] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138689,7 +138691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2708), 1, sym_text_interpolation, - [78384] = 4, + [78388] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138698,7 +138700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2709), 1, sym_text_interpolation, - [78397] = 4, + [78401] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138707,7 +138709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2710), 1, sym_text_interpolation, - [78410] = 4, + [78414] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138716,7 +138718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, STATE(2711), 1, sym_text_interpolation, - [78423] = 4, + [78427] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138725,7 +138727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, STATE(2712), 1, sym_text_interpolation, - [78436] = 4, + [78440] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138734,7 +138736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2713), 1, sym_text_interpolation, - [78449] = 4, + [78453] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138743,7 +138745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2714), 1, sym_text_interpolation, - [78462] = 4, + [78466] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138752,7 +138754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2715), 1, sym_text_interpolation, - [78475] = 4, + [78479] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138761,7 +138763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(2716), 1, sym_text_interpolation, - [78488] = 4, + [78492] = 4, ACTIONS(18), 1, anon_sym_QMARK_GT, ACTIONS(1532), 1, @@ -138770,10 +138772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2717), 1, sym_text_interpolation, - [78501] = 1, + [78505] = 1, ACTIONS(4983), 1, ts_builtin_sym_end, - [78505] = 1, + [78509] = 1, ACTIONS(4985), 1, ts_builtin_sym_end, }; @@ -139399,1527 +139401,1527 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1196)] = 40227, [SMALL_STATE(1197)] = 40318, [SMALL_STATE(1198)] = 40401, - [SMALL_STATE(1199)] = 40452, - [SMALL_STATE(1200)] = 40533, - [SMALL_STATE(1201)] = 40624, - [SMALL_STATE(1202)] = 40707, - [SMALL_STATE(1203)] = 40778, - [SMALL_STATE(1204)] = 40861, - [SMALL_STATE(1205)] = 40952, - [SMALL_STATE(1206)] = 41043, - [SMALL_STATE(1207)] = 41094, - [SMALL_STATE(1208)] = 41179, - [SMALL_STATE(1209)] = 41259, - [SMALL_STATE(1210)] = 41339, - [SMALL_STATE(1211)] = 41419, - [SMALL_STATE(1212)] = 41499, - [SMALL_STATE(1213)] = 41579, - [SMALL_STATE(1214)] = 41659, - [SMALL_STATE(1215)] = 41739, - [SMALL_STATE(1216)] = 41819, - [SMALL_STATE(1217)] = 41887, - [SMALL_STATE(1218)] = 41969, - [SMALL_STATE(1219)] = 42013, - [SMALL_STATE(1220)] = 42093, - [SMALL_STATE(1221)] = 42175, - [SMALL_STATE(1222)] = 42255, - [SMALL_STATE(1223)] = 42335, - [SMALL_STATE(1224)] = 42415, - [SMALL_STATE(1225)] = 42495, - [SMALL_STATE(1226)] = 42575, - [SMALL_STATE(1227)] = 42655, - [SMALL_STATE(1228)] = 42723, - [SMALL_STATE(1229)] = 42803, - [SMALL_STATE(1230)] = 42883, - [SMALL_STATE(1231)] = 42963, - [SMALL_STATE(1232)] = 43045, - [SMALL_STATE(1233)] = 43125, - [SMALL_STATE(1234)] = 43207, - [SMALL_STATE(1235)] = 43287, - [SMALL_STATE(1236)] = 43369, - [SMALL_STATE(1237)] = 43449, - [SMALL_STATE(1238)] = 43529, - [SMALL_STATE(1239)] = 43609, - [SMALL_STATE(1240)] = 43689, - [SMALL_STATE(1241)] = 43769, - [SMALL_STATE(1242)] = 43849, - [SMALL_STATE(1243)] = 43929, - [SMALL_STATE(1244)] = 44009, - [SMALL_STATE(1245)] = 44089, - [SMALL_STATE(1246)] = 44169, - [SMALL_STATE(1247)] = 44251, - [SMALL_STATE(1248)] = 44333, - [SMALL_STATE(1249)] = 44413, - [SMALL_STATE(1250)] = 44495, - [SMALL_STATE(1251)] = 44575, - [SMALL_STATE(1252)] = 44654, - [SMALL_STATE(1253)] = 44733, - [SMALL_STATE(1254)] = 44812, - [SMALL_STATE(1255)] = 44891, - [SMALL_STATE(1256)] = 44970, - [SMALL_STATE(1257)] = 45049, - [SMALL_STATE(1258)] = 45128, - [SMALL_STATE(1259)] = 45207, - [SMALL_STATE(1260)] = 45286, - [SMALL_STATE(1261)] = 45365, - [SMALL_STATE(1262)] = 45444, - [SMALL_STATE(1263)] = 45525, - [SMALL_STATE(1264)] = 45604, - [SMALL_STATE(1265)] = 45683, - [SMALL_STATE(1266)] = 45762, - [SMALL_STATE(1267)] = 45841, - [SMALL_STATE(1268)] = 45920, - [SMALL_STATE(1269)] = 45999, - [SMALL_STATE(1270)] = 46078, - [SMALL_STATE(1271)] = 46157, - [SMALL_STATE(1272)] = 46236, - [SMALL_STATE(1273)] = 46315, - [SMALL_STATE(1274)] = 46394, - [SMALL_STATE(1275)] = 46473, - [SMALL_STATE(1276)] = 46552, - [SMALL_STATE(1277)] = 46631, - [SMALL_STATE(1278)] = 46710, - [SMALL_STATE(1279)] = 46789, - [SMALL_STATE(1280)] = 46868, - [SMALL_STATE(1281)] = 46947, - [SMALL_STATE(1282)] = 47026, - [SMALL_STATE(1283)] = 47105, - [SMALL_STATE(1284)] = 47184, - [SMALL_STATE(1285)] = 47263, - [SMALL_STATE(1286)] = 47342, - [SMALL_STATE(1287)] = 47423, - [SMALL_STATE(1288)] = 47502, - [SMALL_STATE(1289)] = 47581, - [SMALL_STATE(1290)] = 47660, - [SMALL_STATE(1291)] = 47739, - [SMALL_STATE(1292)] = 47820, - [SMALL_STATE(1293)] = 47899, - [SMALL_STATE(1294)] = 47978, - [SMALL_STATE(1295)] = 48057, - [SMALL_STATE(1296)] = 48136, - [SMALL_STATE(1297)] = 48179, - [SMALL_STATE(1298)] = 48222, - [SMALL_STATE(1299)] = 48301, - [SMALL_STATE(1300)] = 48380, - [SMALL_STATE(1301)] = 48459, - [SMALL_STATE(1302)] = 48538, - [SMALL_STATE(1303)] = 48617, - [SMALL_STATE(1304)] = 48696, - [SMALL_STATE(1305)] = 48775, - [SMALL_STATE(1306)] = 48854, - [SMALL_STATE(1307)] = 48933, - [SMALL_STATE(1308)] = 49012, - [SMALL_STATE(1309)] = 49091, - [SMALL_STATE(1310)] = 49170, - [SMALL_STATE(1311)] = 49249, - [SMALL_STATE(1312)] = 49328, - [SMALL_STATE(1313)] = 49407, - [SMALL_STATE(1314)] = 49486, - [SMALL_STATE(1315)] = 49565, - [SMALL_STATE(1316)] = 49644, - [SMALL_STATE(1317)] = 49723, - [SMALL_STATE(1318)] = 49802, - [SMALL_STATE(1319)] = 49881, - [SMALL_STATE(1320)] = 49960, - [SMALL_STATE(1321)] = 50041, - [SMALL_STATE(1322)] = 50086, - [SMALL_STATE(1323)] = 50165, - [SMALL_STATE(1324)] = 50244, - [SMALL_STATE(1325)] = 50286, - [SMALL_STATE(1326)] = 50328, - [SMALL_STATE(1327)] = 50370, - [SMALL_STATE(1328)] = 50412, - [SMALL_STATE(1329)] = 50459, - [SMALL_STATE(1330)] = 50504, - [SMALL_STATE(1331)] = 50561, - [SMALL_STATE(1332)] = 50618, - [SMALL_STATE(1333)] = 50657, - [SMALL_STATE(1334)] = 50714, - [SMALL_STATE(1335)] = 50753, - [SMALL_STATE(1336)] = 50810, - [SMALL_STATE(1337)] = 50849, - [SMALL_STATE(1338)] = 50906, - [SMALL_STATE(1339)] = 50963, - [SMALL_STATE(1340)] = 51002, - [SMALL_STATE(1341)] = 51059, - [SMALL_STATE(1342)] = 51116, - [SMALL_STATE(1343)] = 51173, - [SMALL_STATE(1344)] = 51230, - [SMALL_STATE(1345)] = 51287, - [SMALL_STATE(1346)] = 51341, - [SMALL_STATE(1347)] = 51395, - [SMALL_STATE(1348)] = 51449, - [SMALL_STATE(1349)] = 51503, - [SMALL_STATE(1350)] = 51557, - [SMALL_STATE(1351)] = 51611, - [SMALL_STATE(1352)] = 51658, - [SMALL_STATE(1353)] = 51705, - [SMALL_STATE(1354)] = 51752, - [SMALL_STATE(1355)] = 51787, - [SMALL_STATE(1356)] = 51821, - [SMALL_STATE(1357)] = 51880, - [SMALL_STATE(1358)] = 51932, - [SMALL_STATE(1359)] = 51984, - [SMALL_STATE(1360)] = 52038, - [SMALL_STATE(1361)] = 52089, - [SMALL_STATE(1362)] = 52138, - [SMALL_STATE(1363)] = 52187, - [SMALL_STATE(1364)] = 52238, - [SMALL_STATE(1365)] = 52289, - [SMALL_STATE(1366)] = 52338, - [SMALL_STATE(1367)] = 52371, - [SMALL_STATE(1368)] = 52406, - [SMALL_STATE(1369)] = 52436, - [SMALL_STATE(1370)] = 52480, - [SMALL_STATE(1371)] = 52507, - [SMALL_STATE(1372)] = 52534, - [SMALL_STATE(1373)] = 52561, - [SMALL_STATE(1374)] = 52606, - [SMALL_STATE(1375)] = 52633, - [SMALL_STATE(1376)] = 52659, - [SMALL_STATE(1377)] = 52685, - [SMALL_STATE(1378)] = 52711, - [SMALL_STATE(1379)] = 52737, - [SMALL_STATE(1380)] = 52763, - [SMALL_STATE(1381)] = 52789, - [SMALL_STATE(1382)] = 52835, - [SMALL_STATE(1383)] = 52879, - [SMALL_STATE(1384)] = 52925, - [SMALL_STATE(1385)] = 52971, - [SMALL_STATE(1386)] = 52997, - [SMALL_STATE(1387)] = 53023, - [SMALL_STATE(1388)] = 53049, - [SMALL_STATE(1389)] = 53075, - [SMALL_STATE(1390)] = 53101, - [SMALL_STATE(1391)] = 53127, - [SMALL_STATE(1392)] = 53165, - [SMALL_STATE(1393)] = 53191, - [SMALL_STATE(1394)] = 53217, - [SMALL_STATE(1395)] = 53243, - [SMALL_STATE(1396)] = 53269, - [SMALL_STATE(1397)] = 53295, - [SMALL_STATE(1398)] = 53321, - [SMALL_STATE(1399)] = 53367, - [SMALL_STATE(1400)] = 53392, - [SMALL_STATE(1401)] = 53433, - [SMALL_STATE(1402)] = 53474, - [SMALL_STATE(1403)] = 53517, - [SMALL_STATE(1404)] = 53542, - [SMALL_STATE(1405)] = 53567, - [SMALL_STATE(1406)] = 53592, - [SMALL_STATE(1407)] = 53635, - [SMALL_STATE(1408)] = 53678, - [SMALL_STATE(1409)] = 53705, - [SMALL_STATE(1410)] = 53730, - [SMALL_STATE(1411)] = 53777, - [SMALL_STATE(1412)] = 53802, - [SMALL_STATE(1413)] = 53827, - [SMALL_STATE(1414)] = 53852, - [SMALL_STATE(1415)] = 53899, - [SMALL_STATE(1416)] = 53942, - [SMALL_STATE(1417)] = 53967, - [SMALL_STATE(1418)] = 53992, - [SMALL_STATE(1419)] = 54017, - [SMALL_STATE(1420)] = 54042, - [SMALL_STATE(1421)] = 54067, - [SMALL_STATE(1422)] = 54098, - [SMALL_STATE(1423)] = 54123, - [SMALL_STATE(1424)] = 54148, - [SMALL_STATE(1425)] = 54173, - [SMALL_STATE(1426)] = 54198, - [SMALL_STATE(1427)] = 54223, - [SMALL_STATE(1428)] = 54248, - [SMALL_STATE(1429)] = 54273, - [SMALL_STATE(1430)] = 54298, - [SMALL_STATE(1431)] = 54339, - [SMALL_STATE(1432)] = 54364, - [SMALL_STATE(1433)] = 54389, - [SMALL_STATE(1434)] = 54414, - [SMALL_STATE(1435)] = 54439, - [SMALL_STATE(1436)] = 54464, - [SMALL_STATE(1437)] = 54489, - [SMALL_STATE(1438)] = 54514, - [SMALL_STATE(1439)] = 54547, - [SMALL_STATE(1440)] = 54587, - [SMALL_STATE(1441)] = 54623, - [SMALL_STATE(1442)] = 54663, - [SMALL_STATE(1443)] = 54703, - [SMALL_STATE(1444)] = 54743, - [SMALL_STATE(1445)] = 54780, - [SMALL_STATE(1446)] = 54815, - [SMALL_STATE(1447)] = 54852, - [SMALL_STATE(1448)] = 54877, - [SMALL_STATE(1449)] = 54902, - [SMALL_STATE(1450)] = 54935, - [SMALL_STATE(1451)] = 54970, - [SMALL_STATE(1452)] = 55007, - [SMALL_STATE(1453)] = 55032, - [SMALL_STATE(1454)] = 55057, - [SMALL_STATE(1455)] = 55090, - [SMALL_STATE(1456)] = 55127, - [SMALL_STATE(1457)] = 55162, - [SMALL_STATE(1458)] = 55199, - [SMALL_STATE(1459)] = 55236, - [SMALL_STATE(1460)] = 55260, - [SMALL_STATE(1461)] = 55284, - [SMALL_STATE(1462)] = 55318, - [SMALL_STATE(1463)] = 55346, - [SMALL_STATE(1464)] = 55370, - [SMALL_STATE(1465)] = 55394, - [SMALL_STATE(1466)] = 55418, - [SMALL_STATE(1467)] = 55442, - [SMALL_STATE(1468)] = 55466, - [SMALL_STATE(1469)] = 55490, - [SMALL_STATE(1470)] = 55514, - [SMALL_STATE(1471)] = 55538, - [SMALL_STATE(1472)] = 55562, - [SMALL_STATE(1473)] = 55586, - [SMALL_STATE(1474)] = 55620, - [SMALL_STATE(1475)] = 55654, - [SMALL_STATE(1476)] = 55678, - [SMALL_STATE(1477)] = 55702, - [SMALL_STATE(1478)] = 55730, - [SMALL_STATE(1479)] = 55754, - [SMALL_STATE(1480)] = 55786, - [SMALL_STATE(1481)] = 55814, - [SMALL_STATE(1482)] = 55838, - [SMALL_STATE(1483)] = 55862, - [SMALL_STATE(1484)] = 55894, - [SMALL_STATE(1485)] = 55922, - [SMALL_STATE(1486)] = 55948, - [SMALL_STATE(1487)] = 55978, - [SMALL_STATE(1488)] = 56012, - [SMALL_STATE(1489)] = 56044, - [SMALL_STATE(1490)] = 56078, - [SMALL_STATE(1491)] = 56099, - [SMALL_STATE(1492)] = 56130, - [SMALL_STATE(1493)] = 56159, - [SMALL_STATE(1494)] = 56188, - [SMALL_STATE(1495)] = 56217, - [SMALL_STATE(1496)] = 56242, - [SMALL_STATE(1497)] = 56273, - [SMALL_STATE(1498)] = 56300, - [SMALL_STATE(1499)] = 56329, - [SMALL_STATE(1500)] = 56358, - [SMALL_STATE(1501)] = 56387, - [SMALL_STATE(1502)] = 56416, - [SMALL_STATE(1503)] = 56447, - [SMALL_STATE(1504)] = 56478, - [SMALL_STATE(1505)] = 56507, - [SMALL_STATE(1506)] = 56536, - [SMALL_STATE(1507)] = 56561, - [SMALL_STATE(1508)] = 56590, - [SMALL_STATE(1509)] = 56619, - [SMALL_STATE(1510)] = 56640, - [SMALL_STATE(1511)] = 56667, - [SMALL_STATE(1512)] = 56688, - [SMALL_STATE(1513)] = 56709, - [SMALL_STATE(1514)] = 56736, - [SMALL_STATE(1515)] = 56769, - [SMALL_STATE(1516)] = 56800, - [SMALL_STATE(1517)] = 56829, - [SMALL_STATE(1518)] = 56850, - [SMALL_STATE(1519)] = 56877, - [SMALL_STATE(1520)] = 56906, - [SMALL_STATE(1521)] = 56927, - [SMALL_STATE(1522)] = 56948, - [SMALL_STATE(1523)] = 56977, - [SMALL_STATE(1524)] = 57004, - [SMALL_STATE(1525)] = 57027, - [SMALL_STATE(1526)] = 57056, - [SMALL_STATE(1527)] = 57085, - [SMALL_STATE(1528)] = 57118, - [SMALL_STATE(1529)] = 57149, - [SMALL_STATE(1530)] = 57176, - [SMALL_STATE(1531)] = 57205, - [SMALL_STATE(1532)] = 57234, - [SMALL_STATE(1533)] = 57261, - [SMALL_STATE(1534)] = 57292, - [SMALL_STATE(1535)] = 57323, - [SMALL_STATE(1536)] = 57352, - [SMALL_STATE(1537)] = 57383, - [SMALL_STATE(1538)] = 57412, - [SMALL_STATE(1539)] = 57441, - [SMALL_STATE(1540)] = 57468, - [SMALL_STATE(1541)] = 57497, - [SMALL_STATE(1542)] = 57526, - [SMALL_STATE(1543)] = 57553, - [SMALL_STATE(1544)] = 57580, - [SMALL_STATE(1545)] = 57607, - [SMALL_STATE(1546)] = 57636, - [SMALL_STATE(1547)] = 57667, - [SMALL_STATE(1548)] = 57698, - [SMALL_STATE(1549)] = 57727, - [SMALL_STATE(1550)] = 57756, - [SMALL_STATE(1551)] = 57787, - [SMALL_STATE(1552)] = 57816, - [SMALL_STATE(1553)] = 57847, - [SMALL_STATE(1554)] = 57870, - [SMALL_STATE(1555)] = 57899, - [SMALL_STATE(1556)] = 57928, - [SMALL_STATE(1557)] = 57962, - [SMALL_STATE(1558)] = 57994, - [SMALL_STATE(1559)] = 58020, - [SMALL_STATE(1560)] = 58054, - [SMALL_STATE(1561)] = 58088, - [SMALL_STATE(1562)] = 58114, - [SMALL_STATE(1563)] = 58148, - [SMALL_STATE(1564)] = 58178, - [SMALL_STATE(1565)] = 58204, - [SMALL_STATE(1566)] = 58232, - [SMALL_STATE(1567)] = 58266, - [SMALL_STATE(1568)] = 58296, - [SMALL_STATE(1569)] = 58322, - [SMALL_STATE(1570)] = 58356, - [SMALL_STATE(1571)] = 58377, - [SMALL_STATE(1572)] = 58404, - [SMALL_STATE(1573)] = 58425, - [SMALL_STATE(1574)] = 58452, - [SMALL_STATE(1575)] = 58475, - [SMALL_STATE(1576)] = 58502, - [SMALL_STATE(1577)] = 58523, - [SMALL_STATE(1578)] = 58544, - [SMALL_STATE(1579)] = 58565, - [SMALL_STATE(1580)] = 58588, - [SMALL_STATE(1581)] = 58609, - [SMALL_STATE(1582)] = 58636, - [SMALL_STATE(1583)] = 58657, - [SMALL_STATE(1584)] = 58678, - [SMALL_STATE(1585)] = 58705, - [SMALL_STATE(1586)] = 58732, - [SMALL_STATE(1587)] = 58761, - [SMALL_STATE(1588)] = 58792, - [SMALL_STATE(1589)] = 58815, - [SMALL_STATE(1590)] = 58838, - [SMALL_STATE(1591)] = 58861, - [SMALL_STATE(1592)] = 58884, - [SMALL_STATE(1593)] = 58907, - [SMALL_STATE(1594)] = 58928, - [SMALL_STATE(1595)] = 58951, - [SMALL_STATE(1596)] = 58972, - [SMALL_STATE(1597)] = 58995, - [SMALL_STATE(1598)] = 59018, - [SMALL_STATE(1599)] = 59043, - [SMALL_STATE(1600)] = 59064, - [SMALL_STATE(1601)] = 59087, - [SMALL_STATE(1602)] = 59110, - [SMALL_STATE(1603)] = 59133, - [SMALL_STATE(1604)] = 59156, - [SMALL_STATE(1605)] = 59177, - [SMALL_STATE(1606)] = 59200, - [SMALL_STATE(1607)] = 59221, - [SMALL_STATE(1608)] = 59242, - [SMALL_STATE(1609)] = 59265, - [SMALL_STATE(1610)] = 59286, - [SMALL_STATE(1611)] = 59309, - [SMALL_STATE(1612)] = 59332, - [SMALL_STATE(1613)] = 59359, - [SMALL_STATE(1614)] = 59385, - [SMALL_STATE(1615)] = 59413, - [SMALL_STATE(1616)] = 59441, - [SMALL_STATE(1617)] = 59467, - [SMALL_STATE(1618)] = 59493, - [SMALL_STATE(1619)] = 59513, - [SMALL_STATE(1620)] = 59541, - [SMALL_STATE(1621)] = 59561, - [SMALL_STATE(1622)] = 59587, - [SMALL_STATE(1623)] = 59613, - [SMALL_STATE(1624)] = 59641, - [SMALL_STATE(1625)] = 59665, - [SMALL_STATE(1626)] = 59693, - [SMALL_STATE(1627)] = 59713, - [SMALL_STATE(1628)] = 59741, - [SMALL_STATE(1629)] = 59761, - [SMALL_STATE(1630)] = 59781, - [SMALL_STATE(1631)] = 59807, - [SMALL_STATE(1632)] = 59833, - [SMALL_STATE(1633)] = 59861, - [SMALL_STATE(1634)] = 59881, - [SMALL_STATE(1635)] = 59909, - [SMALL_STATE(1636)] = 59929, - [SMALL_STATE(1637)] = 59957, - [SMALL_STATE(1638)] = 59981, - [SMALL_STATE(1639)] = 60007, - [SMALL_STATE(1640)] = 60031, - [SMALL_STATE(1641)] = 60059, - [SMALL_STATE(1642)] = 60087, - [SMALL_STATE(1643)] = 60115, - [SMALL_STATE(1644)] = 60143, - [SMALL_STATE(1645)] = 60171, - [SMALL_STATE(1646)] = 60191, - [SMALL_STATE(1647)] = 60215, - [SMALL_STATE(1648)] = 60241, - [SMALL_STATE(1649)] = 60269, - [SMALL_STATE(1650)] = 60297, - [SMALL_STATE(1651)] = 60325, - [SMALL_STATE(1652)] = 60353, - [SMALL_STATE(1653)] = 60379, - [SMALL_STATE(1654)] = 60407, - [SMALL_STATE(1655)] = 60435, - [SMALL_STATE(1656)] = 60457, - [SMALL_STATE(1657)] = 60481, - [SMALL_STATE(1658)] = 60509, - [SMALL_STATE(1659)] = 60537, - [SMALL_STATE(1660)] = 60565, - [SMALL_STATE(1661)] = 60589, - [SMALL_STATE(1662)] = 60617, - [SMALL_STATE(1663)] = 60645, - [SMALL_STATE(1664)] = 60673, - [SMALL_STATE(1665)] = 60701, - [SMALL_STATE(1666)] = 60727, - [SMALL_STATE(1667)] = 60755, - [SMALL_STATE(1668)] = 60783, - [SMALL_STATE(1669)] = 60811, - [SMALL_STATE(1670)] = 60839, - [SMALL_STATE(1671)] = 60859, - [SMALL_STATE(1672)] = 60887, - [SMALL_STATE(1673)] = 60913, - [SMALL_STATE(1674)] = 60941, - [SMALL_STATE(1675)] = 60969, - [SMALL_STATE(1676)] = 60997, - [SMALL_STATE(1677)] = 61025, - [SMALL_STATE(1678)] = 61045, - [SMALL_STATE(1679)] = 61069, - [SMALL_STATE(1680)] = 61095, - [SMALL_STATE(1681)] = 61123, - [SMALL_STATE(1682)] = 61151, - [SMALL_STATE(1683)] = 61179, - [SMALL_STATE(1684)] = 61207, - [SMALL_STATE(1685)] = 61228, - [SMALL_STATE(1686)] = 61249, - [SMALL_STATE(1687)] = 61272, - [SMALL_STATE(1688)] = 61295, - [SMALL_STATE(1689)] = 61316, - [SMALL_STATE(1690)] = 61337, - [SMALL_STATE(1691)] = 61362, - [SMALL_STATE(1692)] = 61387, - [SMALL_STATE(1693)] = 61408, - [SMALL_STATE(1694)] = 61429, - [SMALL_STATE(1695)] = 61448, - [SMALL_STATE(1696)] = 61473, - [SMALL_STATE(1697)] = 61492, - [SMALL_STATE(1698)] = 61517, - [SMALL_STATE(1699)] = 61542, - [SMALL_STATE(1700)] = 61561, - [SMALL_STATE(1701)] = 61582, - [SMALL_STATE(1702)] = 61601, - [SMALL_STATE(1703)] = 61622, - [SMALL_STATE(1704)] = 61647, - [SMALL_STATE(1705)] = 61672, - [SMALL_STATE(1706)] = 61697, - [SMALL_STATE(1707)] = 61718, - [SMALL_STATE(1708)] = 61741, - [SMALL_STATE(1709)] = 61762, - [SMALL_STATE(1710)] = 61785, - [SMALL_STATE(1711)] = 61808, - [SMALL_STATE(1712)] = 61833, - [SMALL_STATE(1713)] = 61854, - [SMALL_STATE(1714)] = 61877, - [SMALL_STATE(1715)] = 61900, - [SMALL_STATE(1716)] = 61921, - [SMALL_STATE(1717)] = 61940, - [SMALL_STATE(1718)] = 61965, - [SMALL_STATE(1719)] = 61990, - [SMALL_STATE(1720)] = 62013, - [SMALL_STATE(1721)] = 62032, - [SMALL_STATE(1722)] = 62057, - [SMALL_STATE(1723)] = 62082, - [SMALL_STATE(1724)] = 62107, - [SMALL_STATE(1725)] = 62132, - [SMALL_STATE(1726)] = 62153, - [SMALL_STATE(1727)] = 62174, - [SMALL_STATE(1728)] = 62195, - [SMALL_STATE(1729)] = 62218, - [SMALL_STATE(1730)] = 62239, - [SMALL_STATE(1731)] = 62262, - [SMALL_STATE(1732)] = 62283, - [SMALL_STATE(1733)] = 62304, - [SMALL_STATE(1734)] = 62327, - [SMALL_STATE(1735)] = 62350, - [SMALL_STATE(1736)] = 62373, - [SMALL_STATE(1737)] = 62394, - [SMALL_STATE(1738)] = 62417, - [SMALL_STATE(1739)] = 62438, - [SMALL_STATE(1740)] = 62463, - [SMALL_STATE(1741)] = 62488, - [SMALL_STATE(1742)] = 62509, - [SMALL_STATE(1743)] = 62532, - [SMALL_STATE(1744)] = 62555, - [SMALL_STATE(1745)] = 62574, - [SMALL_STATE(1746)] = 62597, - [SMALL_STATE(1747)] = 62614, - [SMALL_STATE(1748)] = 62637, - [SMALL_STATE(1749)] = 62658, - [SMALL_STATE(1750)] = 62679, - [SMALL_STATE(1751)] = 62704, - [SMALL_STATE(1752)] = 62725, - [SMALL_STATE(1753)] = 62746, - [SMALL_STATE(1754)] = 62765, - [SMALL_STATE(1755)] = 62786, - [SMALL_STATE(1756)] = 62807, - [SMALL_STATE(1757)] = 62824, - [SMALL_STATE(1758)] = 62845, - [SMALL_STATE(1759)] = 62866, - [SMALL_STATE(1760)] = 62887, - [SMALL_STATE(1761)] = 62910, - [SMALL_STATE(1762)] = 62931, - [SMALL_STATE(1763)] = 62948, - [SMALL_STATE(1764)] = 62969, - [SMALL_STATE(1765)] = 62990, - [SMALL_STATE(1766)] = 63013, - [SMALL_STATE(1767)] = 63036, - [SMALL_STATE(1768)] = 63053, - [SMALL_STATE(1769)] = 63072, - [SMALL_STATE(1770)] = 63095, - [SMALL_STATE(1771)] = 63116, - [SMALL_STATE(1772)] = 63137, - [SMALL_STATE(1773)] = 63160, - [SMALL_STATE(1774)] = 63181, - [SMALL_STATE(1775)] = 63200, - [SMALL_STATE(1776)] = 63221, - [SMALL_STATE(1777)] = 63246, - [SMALL_STATE(1778)] = 63271, - [SMALL_STATE(1779)] = 63290, - [SMALL_STATE(1780)] = 63311, - [SMALL_STATE(1781)] = 63334, - [SMALL_STATE(1782)] = 63351, - [SMALL_STATE(1783)] = 63372, - [SMALL_STATE(1784)] = 63391, - [SMALL_STATE(1785)] = 63412, - [SMALL_STATE(1786)] = 63434, - [SMALL_STATE(1787)] = 63456, - [SMALL_STATE(1788)] = 63478, - [SMALL_STATE(1789)] = 63500, - [SMALL_STATE(1790)] = 63518, - [SMALL_STATE(1791)] = 63538, - [SMALL_STATE(1792)] = 63560, - [SMALL_STATE(1793)] = 63582, - [SMALL_STATE(1794)] = 63598, - [SMALL_STATE(1795)] = 63614, - [SMALL_STATE(1796)] = 63630, - [SMALL_STATE(1797)] = 63648, - [SMALL_STATE(1798)] = 63666, - [SMALL_STATE(1799)] = 63682, - [SMALL_STATE(1800)] = 63702, - [SMALL_STATE(1801)] = 63722, - [SMALL_STATE(1802)] = 63744, - [SMALL_STATE(1803)] = 63766, - [SMALL_STATE(1804)] = 63788, - [SMALL_STATE(1805)] = 63804, - [SMALL_STATE(1806)] = 63822, - [SMALL_STATE(1807)] = 63844, - [SMALL_STATE(1808)] = 63864, - [SMALL_STATE(1809)] = 63884, - [SMALL_STATE(1810)] = 63904, - [SMALL_STATE(1811)] = 63920, - [SMALL_STATE(1812)] = 63940, - [SMALL_STATE(1813)] = 63958, - [SMALL_STATE(1814)] = 63978, - [SMALL_STATE(1815)] = 63998, - [SMALL_STATE(1816)] = 64018, - [SMALL_STATE(1817)] = 64038, - [SMALL_STATE(1818)] = 64056, - [SMALL_STATE(1819)] = 64076, - [SMALL_STATE(1820)] = 64094, - [SMALL_STATE(1821)] = 64116, - [SMALL_STATE(1822)] = 64134, - [SMALL_STATE(1823)] = 64156, - [SMALL_STATE(1824)] = 64178, - [SMALL_STATE(1825)] = 64198, - [SMALL_STATE(1826)] = 64218, - [SMALL_STATE(1827)] = 64240, - [SMALL_STATE(1828)] = 64260, - [SMALL_STATE(1829)] = 64280, - [SMALL_STATE(1830)] = 64302, - [SMALL_STATE(1831)] = 64320, - [SMALL_STATE(1832)] = 64340, - [SMALL_STATE(1833)] = 64362, - [SMALL_STATE(1834)] = 64380, - [SMALL_STATE(1835)] = 64402, - [SMALL_STATE(1836)] = 64424, - [SMALL_STATE(1837)] = 64444, - [SMALL_STATE(1838)] = 64460, - [SMALL_STATE(1839)] = 64476, - [SMALL_STATE(1840)] = 64492, - [SMALL_STATE(1841)] = 64514, - [SMALL_STATE(1842)] = 64536, - [SMALL_STATE(1843)] = 64558, - [SMALL_STATE(1844)] = 64578, - [SMALL_STATE(1845)] = 64594, - [SMALL_STATE(1846)] = 64616, - [SMALL_STATE(1847)] = 64638, - [SMALL_STATE(1848)] = 64654, - [SMALL_STATE(1849)] = 64676, - [SMALL_STATE(1850)] = 64698, - [SMALL_STATE(1851)] = 64720, - [SMALL_STATE(1852)] = 64742, - [SMALL_STATE(1853)] = 64758, - [SMALL_STATE(1854)] = 64780, - [SMALL_STATE(1855)] = 64802, - [SMALL_STATE(1856)] = 64824, - [SMALL_STATE(1857)] = 64846, - [SMALL_STATE(1858)] = 64868, - [SMALL_STATE(1859)] = 64888, - [SMALL_STATE(1860)] = 64910, - [SMALL_STATE(1861)] = 64930, - [SMALL_STATE(1862)] = 64952, - [SMALL_STATE(1863)] = 64974, - [SMALL_STATE(1864)] = 64996, - [SMALL_STATE(1865)] = 65018, - [SMALL_STATE(1866)] = 65036, - [SMALL_STATE(1867)] = 65056, - [SMALL_STATE(1868)] = 65076, - [SMALL_STATE(1869)] = 65098, - [SMALL_STATE(1870)] = 65118, - [SMALL_STATE(1871)] = 65136, - [SMALL_STATE(1872)] = 65158, - [SMALL_STATE(1873)] = 65176, - [SMALL_STATE(1874)] = 65196, - [SMALL_STATE(1875)] = 65218, - [SMALL_STATE(1876)] = 65238, - [SMALL_STATE(1877)] = 65260, - [SMALL_STATE(1878)] = 65282, - [SMALL_STATE(1879)] = 65304, - [SMALL_STATE(1880)] = 65326, - [SMALL_STATE(1881)] = 65348, - [SMALL_STATE(1882)] = 65370, - [SMALL_STATE(1883)] = 65390, - [SMALL_STATE(1884)] = 65412, - [SMALL_STATE(1885)] = 65432, - [SMALL_STATE(1886)] = 65454, - [SMALL_STATE(1887)] = 65476, - [SMALL_STATE(1888)] = 65496, - [SMALL_STATE(1889)] = 65516, - [SMALL_STATE(1890)] = 65536, - [SMALL_STATE(1891)] = 65556, - [SMALL_STATE(1892)] = 65576, - [SMALL_STATE(1893)] = 65596, - [SMALL_STATE(1894)] = 65616, - [SMALL_STATE(1895)] = 65636, - [SMALL_STATE(1896)] = 65654, - [SMALL_STATE(1897)] = 65676, - [SMALL_STATE(1898)] = 65694, - [SMALL_STATE(1899)] = 65716, - [SMALL_STATE(1900)] = 65732, - [SMALL_STATE(1901)] = 65752, - [SMALL_STATE(1902)] = 65774, - [SMALL_STATE(1903)] = 65794, - [SMALL_STATE(1904)] = 65814, - [SMALL_STATE(1905)] = 65836, - [SMALL_STATE(1906)] = 65856, - [SMALL_STATE(1907)] = 65872, - [SMALL_STATE(1908)] = 65892, - [SMALL_STATE(1909)] = 65912, - [SMALL_STATE(1910)] = 65932, - [SMALL_STATE(1911)] = 65954, - [SMALL_STATE(1912)] = 65976, - [SMALL_STATE(1913)] = 65992, - [SMALL_STATE(1914)] = 66012, - [SMALL_STATE(1915)] = 66034, - [SMALL_STATE(1916)] = 66050, - [SMALL_STATE(1917)] = 66070, - [SMALL_STATE(1918)] = 66090, - [SMALL_STATE(1919)] = 66110, - [SMALL_STATE(1920)] = 66126, - [SMALL_STATE(1921)] = 66146, - [SMALL_STATE(1922)] = 66166, - [SMALL_STATE(1923)] = 66186, - [SMALL_STATE(1924)] = 66206, - [SMALL_STATE(1925)] = 66226, - [SMALL_STATE(1926)] = 66242, - [SMALL_STATE(1927)] = 66264, - [SMALL_STATE(1928)] = 66280, - [SMALL_STATE(1929)] = 66300, - [SMALL_STATE(1930)] = 66320, - [SMALL_STATE(1931)] = 66340, - [SMALL_STATE(1932)] = 66360, - [SMALL_STATE(1933)] = 66382, - [SMALL_STATE(1934)] = 66398, - [SMALL_STATE(1935)] = 66420, - [SMALL_STATE(1936)] = 66442, - [SMALL_STATE(1937)] = 66464, - [SMALL_STATE(1938)] = 66484, - [SMALL_STATE(1939)] = 66504, - [SMALL_STATE(1940)] = 66524, - [SMALL_STATE(1941)] = 66542, - [SMALL_STATE(1942)] = 66561, - [SMALL_STATE(1943)] = 66576, - [SMALL_STATE(1944)] = 66593, - [SMALL_STATE(1945)] = 66612, - [SMALL_STATE(1946)] = 66631, - [SMALL_STATE(1947)] = 66650, - [SMALL_STATE(1948)] = 66669, - [SMALL_STATE(1949)] = 66688, - [SMALL_STATE(1950)] = 66707, - [SMALL_STATE(1951)] = 66724, - [SMALL_STATE(1952)] = 66743, - [SMALL_STATE(1953)] = 66762, - [SMALL_STATE(1954)] = 66779, - [SMALL_STATE(1955)] = 66798, - [SMALL_STATE(1956)] = 66817, - [SMALL_STATE(1957)] = 66836, - [SMALL_STATE(1958)] = 66855, - [SMALL_STATE(1959)] = 66874, - [SMALL_STATE(1960)] = 66893, - [SMALL_STATE(1961)] = 66912, - [SMALL_STATE(1962)] = 66931, - [SMALL_STATE(1963)] = 66950, - [SMALL_STATE(1964)] = 66969, - [SMALL_STATE(1965)] = 66988, - [SMALL_STATE(1966)] = 67005, - [SMALL_STATE(1967)] = 67020, - [SMALL_STATE(1968)] = 67039, - [SMALL_STATE(1969)] = 67058, - [SMALL_STATE(1970)] = 67077, - [SMALL_STATE(1971)] = 67096, - [SMALL_STATE(1972)] = 67115, - [SMALL_STATE(1973)] = 67134, - [SMALL_STATE(1974)] = 67153, - [SMALL_STATE(1975)] = 67172, - [SMALL_STATE(1976)] = 67189, - [SMALL_STATE(1977)] = 67208, - [SMALL_STATE(1978)] = 67227, - [SMALL_STATE(1979)] = 67246, - [SMALL_STATE(1980)] = 67265, - [SMALL_STATE(1981)] = 67280, - [SMALL_STATE(1982)] = 67299, - [SMALL_STATE(1983)] = 67318, - [SMALL_STATE(1984)] = 67337, - [SMALL_STATE(1985)] = 67356, - [SMALL_STATE(1986)] = 67375, - [SMALL_STATE(1987)] = 67392, - [SMALL_STATE(1988)] = 67411, - [SMALL_STATE(1989)] = 67430, - [SMALL_STATE(1990)] = 67449, - [SMALL_STATE(1991)] = 67468, - [SMALL_STATE(1992)] = 67483, - [SMALL_STATE(1993)] = 67502, - [SMALL_STATE(1994)] = 67517, - [SMALL_STATE(1995)] = 67536, - [SMALL_STATE(1996)] = 67555, - [SMALL_STATE(1997)] = 67570, - [SMALL_STATE(1998)] = 67585, - [SMALL_STATE(1999)] = 67602, - [SMALL_STATE(2000)] = 67619, - [SMALL_STATE(2001)] = 67638, - [SMALL_STATE(2002)] = 67657, - [SMALL_STATE(2003)] = 67674, - [SMALL_STATE(2004)] = 67693, - [SMALL_STATE(2005)] = 67710, - [SMALL_STATE(2006)] = 67729, - [SMALL_STATE(2007)] = 67748, - [SMALL_STATE(2008)] = 67765, - [SMALL_STATE(2009)] = 67784, - [SMALL_STATE(2010)] = 67801, - [SMALL_STATE(2011)] = 67820, - [SMALL_STATE(2012)] = 67837, - [SMALL_STATE(2013)] = 67854, - [SMALL_STATE(2014)] = 67871, - [SMALL_STATE(2015)] = 67888, - [SMALL_STATE(2016)] = 67905, - [SMALL_STATE(2017)] = 67922, - [SMALL_STATE(2018)] = 67939, - [SMALL_STATE(2019)] = 67954, - [SMALL_STATE(2020)] = 67971, - [SMALL_STATE(2021)] = 67990, - [SMALL_STATE(2022)] = 68007, - [SMALL_STATE(2023)] = 68026, - [SMALL_STATE(2024)] = 68043, - [SMALL_STATE(2025)] = 68062, - [SMALL_STATE(2026)] = 68079, - [SMALL_STATE(2027)] = 68096, - [SMALL_STATE(2028)] = 68115, - [SMALL_STATE(2029)] = 68132, - [SMALL_STATE(2030)] = 68149, - [SMALL_STATE(2031)] = 68164, - [SMALL_STATE(2032)] = 68179, - [SMALL_STATE(2033)] = 68196, - [SMALL_STATE(2034)] = 68215, - [SMALL_STATE(2035)] = 68232, - [SMALL_STATE(2036)] = 68249, - [SMALL_STATE(2037)] = 68266, - [SMALL_STATE(2038)] = 68283, - [SMALL_STATE(2039)] = 68302, - [SMALL_STATE(2040)] = 68317, - [SMALL_STATE(2041)] = 68334, - [SMALL_STATE(2042)] = 68351, - [SMALL_STATE(2043)] = 68368, - [SMALL_STATE(2044)] = 68387, - [SMALL_STATE(2045)] = 68406, - [SMALL_STATE(2046)] = 68423, - [SMALL_STATE(2047)] = 68442, - [SMALL_STATE(2048)] = 68459, - [SMALL_STATE(2049)] = 68478, - [SMALL_STATE(2050)] = 68495, - [SMALL_STATE(2051)] = 68514, - [SMALL_STATE(2052)] = 68531, - [SMALL_STATE(2053)] = 68550, - [SMALL_STATE(2054)] = 68567, - [SMALL_STATE(2055)] = 68586, - [SMALL_STATE(2056)] = 68603, - [SMALL_STATE(2057)] = 68622, - [SMALL_STATE(2058)] = 68639, - [SMALL_STATE(2059)] = 68656, - [SMALL_STATE(2060)] = 68673, - [SMALL_STATE(2061)] = 68690, - [SMALL_STATE(2062)] = 68707, - [SMALL_STATE(2063)] = 68724, - [SMALL_STATE(2064)] = 68741, - [SMALL_STATE(2065)] = 68758, - [SMALL_STATE(2066)] = 68775, - [SMALL_STATE(2067)] = 68792, - [SMALL_STATE(2068)] = 68809, - [SMALL_STATE(2069)] = 68828, - [SMALL_STATE(2070)] = 68845, - [SMALL_STATE(2071)] = 68862, - [SMALL_STATE(2072)] = 68881, - [SMALL_STATE(2073)] = 68900, - [SMALL_STATE(2074)] = 68917, - [SMALL_STATE(2075)] = 68936, - [SMALL_STATE(2076)] = 68953, - [SMALL_STATE(2077)] = 68970, - [SMALL_STATE(2078)] = 68989, - [SMALL_STATE(2079)] = 69008, - [SMALL_STATE(2080)] = 69027, - [SMALL_STATE(2081)] = 69044, - [SMALL_STATE(2082)] = 69063, - [SMALL_STATE(2083)] = 69082, - [SMALL_STATE(2084)] = 69101, - [SMALL_STATE(2085)] = 69120, - [SMALL_STATE(2086)] = 69137, - [SMALL_STATE(2087)] = 69156, - [SMALL_STATE(2088)] = 69175, - [SMALL_STATE(2089)] = 69194, - [SMALL_STATE(2090)] = 69211, - [SMALL_STATE(2091)] = 69226, - [SMALL_STATE(2092)] = 69241, - [SMALL_STATE(2093)] = 69260, - [SMALL_STATE(2094)] = 69277, - [SMALL_STATE(2095)] = 69294, - [SMALL_STATE(2096)] = 69311, - [SMALL_STATE(2097)] = 69328, - [SMALL_STATE(2098)] = 69345, - [SMALL_STATE(2099)] = 69362, - [SMALL_STATE(2100)] = 69379, - [SMALL_STATE(2101)] = 69396, - [SMALL_STATE(2102)] = 69413, - [SMALL_STATE(2103)] = 69430, - [SMALL_STATE(2104)] = 69447, - [SMALL_STATE(2105)] = 69464, - [SMALL_STATE(2106)] = 69481, - [SMALL_STATE(2107)] = 69498, - [SMALL_STATE(2108)] = 69515, - [SMALL_STATE(2109)] = 69532, - [SMALL_STATE(2110)] = 69549, - [SMALL_STATE(2111)] = 69566, - [SMALL_STATE(2112)] = 69583, - [SMALL_STATE(2113)] = 69600, - [SMALL_STATE(2114)] = 69617, - [SMALL_STATE(2115)] = 69634, - [SMALL_STATE(2116)] = 69651, - [SMALL_STATE(2117)] = 69668, - [SMALL_STATE(2118)] = 69687, - [SMALL_STATE(2119)] = 69704, - [SMALL_STATE(2120)] = 69721, - [SMALL_STATE(2121)] = 69740, - [SMALL_STATE(2122)] = 69759, - [SMALL_STATE(2123)] = 69776, - [SMALL_STATE(2124)] = 69793, - [SMALL_STATE(2125)] = 69810, - [SMALL_STATE(2126)] = 69827, - [SMALL_STATE(2127)] = 69844, - [SMALL_STATE(2128)] = 69861, - [SMALL_STATE(2129)] = 69876, - [SMALL_STATE(2130)] = 69893, - [SMALL_STATE(2131)] = 69910, - [SMALL_STATE(2132)] = 69927, - [SMALL_STATE(2133)] = 69944, - [SMALL_STATE(2134)] = 69961, - [SMALL_STATE(2135)] = 69980, - [SMALL_STATE(2136)] = 69997, - [SMALL_STATE(2137)] = 70014, - [SMALL_STATE(2138)] = 70031, - [SMALL_STATE(2139)] = 70048, - [SMALL_STATE(2140)] = 70065, - [SMALL_STATE(2141)] = 70082, - [SMALL_STATE(2142)] = 70099, - [SMALL_STATE(2143)] = 70118, - [SMALL_STATE(2144)] = 70135, - [SMALL_STATE(2145)] = 70152, - [SMALL_STATE(2146)] = 70167, - [SMALL_STATE(2147)] = 70182, - [SMALL_STATE(2148)] = 70199, - [SMALL_STATE(2149)] = 70216, - [SMALL_STATE(2150)] = 70233, - [SMALL_STATE(2151)] = 70252, - [SMALL_STATE(2152)] = 70269, - [SMALL_STATE(2153)] = 70288, - [SMALL_STATE(2154)] = 70307, - [SMALL_STATE(2155)] = 70324, - [SMALL_STATE(2156)] = 70341, - [SMALL_STATE(2157)] = 70358, - [SMALL_STATE(2158)] = 70375, - [SMALL_STATE(2159)] = 70392, - [SMALL_STATE(2160)] = 70409, - [SMALL_STATE(2161)] = 70428, - [SMALL_STATE(2162)] = 70445, - [SMALL_STATE(2163)] = 70462, - [SMALL_STATE(2164)] = 70479, - [SMALL_STATE(2165)] = 70496, - [SMALL_STATE(2166)] = 70513, - [SMALL_STATE(2167)] = 70530, - [SMALL_STATE(2168)] = 70547, - [SMALL_STATE(2169)] = 70564, - [SMALL_STATE(2170)] = 70581, - [SMALL_STATE(2171)] = 70598, - [SMALL_STATE(2172)] = 70615, - [SMALL_STATE(2173)] = 70632, - [SMALL_STATE(2174)] = 70647, - [SMALL_STATE(2175)] = 70664, - [SMALL_STATE(2176)] = 70681, - [SMALL_STATE(2177)] = 70698, - [SMALL_STATE(2178)] = 70715, - [SMALL_STATE(2179)] = 70730, - [SMALL_STATE(2180)] = 70745, - [SMALL_STATE(2181)] = 70762, - [SMALL_STATE(2182)] = 70779, - [SMALL_STATE(2183)] = 70796, - [SMALL_STATE(2184)] = 70811, - [SMALL_STATE(2185)] = 70828, - [SMALL_STATE(2186)] = 70847, - [SMALL_STATE(2187)] = 70866, - [SMALL_STATE(2188)] = 70883, - [SMALL_STATE(2189)] = 70902, - [SMALL_STATE(2190)] = 70919, - [SMALL_STATE(2191)] = 70936, - [SMALL_STATE(2192)] = 70951, - [SMALL_STATE(2193)] = 70970, - [SMALL_STATE(2194)] = 70987, - [SMALL_STATE(2195)] = 71006, - [SMALL_STATE(2196)] = 71025, - [SMALL_STATE(2197)] = 71040, - [SMALL_STATE(2198)] = 71059, - [SMALL_STATE(2199)] = 71078, - [SMALL_STATE(2200)] = 71093, - [SMALL_STATE(2201)] = 71108, - [SMALL_STATE(2202)] = 71127, - [SMALL_STATE(2203)] = 71142, - [SMALL_STATE(2204)] = 71157, - [SMALL_STATE(2205)] = 71176, - [SMALL_STATE(2206)] = 71193, - [SMALL_STATE(2207)] = 71210, - [SMALL_STATE(2208)] = 71227, - [SMALL_STATE(2209)] = 71246, - [SMALL_STATE(2210)] = 71265, - [SMALL_STATE(2211)] = 71279, - [SMALL_STATE(2212)] = 71295, - [SMALL_STATE(2213)] = 71311, - [SMALL_STATE(2214)] = 71327, - [SMALL_STATE(2215)] = 71341, - [SMALL_STATE(2216)] = 71355, - [SMALL_STATE(2217)] = 71369, - [SMALL_STATE(2218)] = 71385, - [SMALL_STATE(2219)] = 71401, - [SMALL_STATE(2220)] = 71415, - [SMALL_STATE(2221)] = 71429, - [SMALL_STATE(2222)] = 71443, - [SMALL_STATE(2223)] = 71459, - [SMALL_STATE(2224)] = 71473, - [SMALL_STATE(2225)] = 71487, - [SMALL_STATE(2226)] = 71501, - [SMALL_STATE(2227)] = 71517, - [SMALL_STATE(2228)] = 71533, - [SMALL_STATE(2229)] = 71547, - [SMALL_STATE(2230)] = 71561, - [SMALL_STATE(2231)] = 71575, - [SMALL_STATE(2232)] = 71591, - [SMALL_STATE(2233)] = 71607, - [SMALL_STATE(2234)] = 71623, - [SMALL_STATE(2235)] = 71639, - [SMALL_STATE(2236)] = 71655, - [SMALL_STATE(2237)] = 71671, - [SMALL_STATE(2238)] = 71687, - [SMALL_STATE(2239)] = 71703, - [SMALL_STATE(2240)] = 71719, - [SMALL_STATE(2241)] = 71735, - [SMALL_STATE(2242)] = 71751, - [SMALL_STATE(2243)] = 71767, - [SMALL_STATE(2244)] = 71781, - [SMALL_STATE(2245)] = 71797, - [SMALL_STATE(2246)] = 71813, - [SMALL_STATE(2247)] = 71829, - [SMALL_STATE(2248)] = 71843, - [SMALL_STATE(2249)] = 71857, - [SMALL_STATE(2250)] = 71873, - [SMALL_STATE(2251)] = 71889, - [SMALL_STATE(2252)] = 71903, - [SMALL_STATE(2253)] = 71917, - [SMALL_STATE(2254)] = 71933, - [SMALL_STATE(2255)] = 71947, - [SMALL_STATE(2256)] = 71961, - [SMALL_STATE(2257)] = 71975, - [SMALL_STATE(2258)] = 71989, - [SMALL_STATE(2259)] = 72005, - [SMALL_STATE(2260)] = 72021, - [SMALL_STATE(2261)] = 72035, - [SMALL_STATE(2262)] = 72049, - [SMALL_STATE(2263)] = 72063, - [SMALL_STATE(2264)] = 72079, - [SMALL_STATE(2265)] = 72093, - [SMALL_STATE(2266)] = 72107, - [SMALL_STATE(2267)] = 72121, - [SMALL_STATE(2268)] = 72135, - [SMALL_STATE(2269)] = 72151, - [SMALL_STATE(2270)] = 72167, - [SMALL_STATE(2271)] = 72183, - [SMALL_STATE(2272)] = 72199, - [SMALL_STATE(2273)] = 72215, - [SMALL_STATE(2274)] = 72231, - [SMALL_STATE(2275)] = 72247, - [SMALL_STATE(2276)] = 72261, - [SMALL_STATE(2277)] = 72277, - [SMALL_STATE(2278)] = 72293, - [SMALL_STATE(2279)] = 72309, - [SMALL_STATE(2280)] = 72325, - [SMALL_STATE(2281)] = 72339, - [SMALL_STATE(2282)] = 72353, - [SMALL_STATE(2283)] = 72369, - [SMALL_STATE(2284)] = 72385, - [SMALL_STATE(2285)] = 72399, - [SMALL_STATE(2286)] = 72413, - [SMALL_STATE(2287)] = 72427, - [SMALL_STATE(2288)] = 72441, - [SMALL_STATE(2289)] = 72457, - [SMALL_STATE(2290)] = 72471, - [SMALL_STATE(2291)] = 72487, - [SMALL_STATE(2292)] = 72503, - [SMALL_STATE(2293)] = 72519, - [SMALL_STATE(2294)] = 72535, - [SMALL_STATE(2295)] = 72549, - [SMALL_STATE(2296)] = 72565, - [SMALL_STATE(2297)] = 72581, - [SMALL_STATE(2298)] = 72597, - [SMALL_STATE(2299)] = 72613, - [SMALL_STATE(2300)] = 72629, - [SMALL_STATE(2301)] = 72643, - [SMALL_STATE(2302)] = 72657, - [SMALL_STATE(2303)] = 72673, - [SMALL_STATE(2304)] = 72687, - [SMALL_STATE(2305)] = 72703, - [SMALL_STATE(2306)] = 72717, - [SMALL_STATE(2307)] = 72731, - [SMALL_STATE(2308)] = 72745, - [SMALL_STATE(2309)] = 72761, - [SMALL_STATE(2310)] = 72777, - [SMALL_STATE(2311)] = 72793, - [SMALL_STATE(2312)] = 72809, - [SMALL_STATE(2313)] = 72825, - [SMALL_STATE(2314)] = 72841, - [SMALL_STATE(2315)] = 72857, - [SMALL_STATE(2316)] = 72873, - [SMALL_STATE(2317)] = 72889, - [SMALL_STATE(2318)] = 72905, - [SMALL_STATE(2319)] = 72921, - [SMALL_STATE(2320)] = 72937, - [SMALL_STATE(2321)] = 72953, - [SMALL_STATE(2322)] = 72969, - [SMALL_STATE(2323)] = 72985, - [SMALL_STATE(2324)] = 73001, - [SMALL_STATE(2325)] = 73017, - [SMALL_STATE(2326)] = 73033, - [SMALL_STATE(2327)] = 73049, - [SMALL_STATE(2328)] = 73063, - [SMALL_STATE(2329)] = 73079, - [SMALL_STATE(2330)] = 73093, - [SMALL_STATE(2331)] = 73109, - [SMALL_STATE(2332)] = 73123, - [SMALL_STATE(2333)] = 73139, - [SMALL_STATE(2334)] = 73155, - [SMALL_STATE(2335)] = 73171, - [SMALL_STATE(2336)] = 73185, - [SMALL_STATE(2337)] = 73199, - [SMALL_STATE(2338)] = 73215, - [SMALL_STATE(2339)] = 73231, - [SMALL_STATE(2340)] = 73247, - [SMALL_STATE(2341)] = 73263, - [SMALL_STATE(2342)] = 73277, - [SMALL_STATE(2343)] = 73293, - [SMALL_STATE(2344)] = 73307, - [SMALL_STATE(2345)] = 73321, - [SMALL_STATE(2346)] = 73335, - [SMALL_STATE(2347)] = 73351, - [SMALL_STATE(2348)] = 73365, - [SMALL_STATE(2349)] = 73379, - [SMALL_STATE(2350)] = 73395, - [SMALL_STATE(2351)] = 73411, - [SMALL_STATE(2352)] = 73427, - [SMALL_STATE(2353)] = 73443, - [SMALL_STATE(2354)] = 73457, - [SMALL_STATE(2355)] = 73471, - [SMALL_STATE(2356)] = 73487, - [SMALL_STATE(2357)] = 73503, - [SMALL_STATE(2358)] = 73517, - [SMALL_STATE(2359)] = 73531, - [SMALL_STATE(2360)] = 73547, - [SMALL_STATE(2361)] = 73561, - [SMALL_STATE(2362)] = 73577, - [SMALL_STATE(2363)] = 73593, - [SMALL_STATE(2364)] = 73609, - [SMALL_STATE(2365)] = 73625, - [SMALL_STATE(2366)] = 73641, - [SMALL_STATE(2367)] = 73655, - [SMALL_STATE(2368)] = 73669, - [SMALL_STATE(2369)] = 73685, - [SMALL_STATE(2370)] = 73701, - [SMALL_STATE(2371)] = 73717, - [SMALL_STATE(2372)] = 73733, - [SMALL_STATE(2373)] = 73749, - [SMALL_STATE(2374)] = 73765, - [SMALL_STATE(2375)] = 73781, - [SMALL_STATE(2376)] = 73797, - [SMALL_STATE(2377)] = 73813, - [SMALL_STATE(2378)] = 73829, - [SMALL_STATE(2379)] = 73845, - [SMALL_STATE(2380)] = 73861, - [SMALL_STATE(2381)] = 73875, - [SMALL_STATE(2382)] = 73889, - [SMALL_STATE(2383)] = 73905, - [SMALL_STATE(2384)] = 73921, - [SMALL_STATE(2385)] = 73935, - [SMALL_STATE(2386)] = 73949, - [SMALL_STATE(2387)] = 73965, - [SMALL_STATE(2388)] = 73981, - [SMALL_STATE(2389)] = 73995, - [SMALL_STATE(2390)] = 74009, - [SMALL_STATE(2391)] = 74023, - [SMALL_STATE(2392)] = 74039, - [SMALL_STATE(2393)] = 74055, - [SMALL_STATE(2394)] = 74071, - [SMALL_STATE(2395)] = 74087, - [SMALL_STATE(2396)] = 74103, - [SMALL_STATE(2397)] = 74119, - [SMALL_STATE(2398)] = 74135, - [SMALL_STATE(2399)] = 74151, - [SMALL_STATE(2400)] = 74167, - [SMALL_STATE(2401)] = 74183, - [SMALL_STATE(2402)] = 74199, - [SMALL_STATE(2403)] = 74213, - [SMALL_STATE(2404)] = 74227, - [SMALL_STATE(2405)] = 74243, - [SMALL_STATE(2406)] = 74257, - [SMALL_STATE(2407)] = 74271, - [SMALL_STATE(2408)] = 74285, - [SMALL_STATE(2409)] = 74301, - [SMALL_STATE(2410)] = 74317, - [SMALL_STATE(2411)] = 74333, - [SMALL_STATE(2412)] = 74347, - [SMALL_STATE(2413)] = 74363, - [SMALL_STATE(2414)] = 74379, - [SMALL_STATE(2415)] = 74393, - [SMALL_STATE(2416)] = 74409, - [SMALL_STATE(2417)] = 74425, - [SMALL_STATE(2418)] = 74441, - [SMALL_STATE(2419)] = 74457, - [SMALL_STATE(2420)] = 74473, - [SMALL_STATE(2421)] = 74487, - [SMALL_STATE(2422)] = 74503, - [SMALL_STATE(2423)] = 74519, - [SMALL_STATE(2424)] = 74535, - [SMALL_STATE(2425)] = 74551, - [SMALL_STATE(2426)] = 74565, - [SMALL_STATE(2427)] = 74581, - [SMALL_STATE(2428)] = 74597, - [SMALL_STATE(2429)] = 74611, - [SMALL_STATE(2430)] = 74627, - [SMALL_STATE(2431)] = 74643, - [SMALL_STATE(2432)] = 74659, - [SMALL_STATE(2433)] = 74673, - [SMALL_STATE(2434)] = 74689, - [SMALL_STATE(2435)] = 74705, - [SMALL_STATE(2436)] = 74721, - [SMALL_STATE(2437)] = 74735, - [SMALL_STATE(2438)] = 74751, - [SMALL_STATE(2439)] = 74767, - [SMALL_STATE(2440)] = 74783, - [SMALL_STATE(2441)] = 74797, - [SMALL_STATE(2442)] = 74813, - [SMALL_STATE(2443)] = 74829, - [SMALL_STATE(2444)] = 74843, - [SMALL_STATE(2445)] = 74857, - [SMALL_STATE(2446)] = 74873, - [SMALL_STATE(2447)] = 74887, - [SMALL_STATE(2448)] = 74901, - [SMALL_STATE(2449)] = 74917, - [SMALL_STATE(2450)] = 74931, - [SMALL_STATE(2451)] = 74945, - [SMALL_STATE(2452)] = 74961, - [SMALL_STATE(2453)] = 74977, - [SMALL_STATE(2454)] = 74991, - [SMALL_STATE(2455)] = 75005, - [SMALL_STATE(2456)] = 75021, - [SMALL_STATE(2457)] = 75035, - [SMALL_STATE(2458)] = 75051, - [SMALL_STATE(2459)] = 75067, - [SMALL_STATE(2460)] = 75083, - [SMALL_STATE(2461)] = 75099, - [SMALL_STATE(2462)] = 75113, - [SMALL_STATE(2463)] = 75127, - [SMALL_STATE(2464)] = 75143, - [SMALL_STATE(2465)] = 75159, - [SMALL_STATE(2466)] = 75175, - [SMALL_STATE(2467)] = 75191, - [SMALL_STATE(2468)] = 75207, - [SMALL_STATE(2469)] = 75223, - [SMALL_STATE(2470)] = 75239, - [SMALL_STATE(2471)] = 75255, - [SMALL_STATE(2472)] = 75271, - [SMALL_STATE(2473)] = 75287, - [SMALL_STATE(2474)] = 75301, - [SMALL_STATE(2475)] = 75315, - [SMALL_STATE(2476)] = 75331, - [SMALL_STATE(2477)] = 75345, - [SMALL_STATE(2478)] = 75359, - [SMALL_STATE(2479)] = 75375, - [SMALL_STATE(2480)] = 75391, - [SMALL_STATE(2481)] = 75407, - [SMALL_STATE(2482)] = 75421, - [SMALL_STATE(2483)] = 75437, - [SMALL_STATE(2484)] = 75453, - [SMALL_STATE(2485)] = 75469, - [SMALL_STATE(2486)] = 75485, - [SMALL_STATE(2487)] = 75498, - [SMALL_STATE(2488)] = 75511, - [SMALL_STATE(2489)] = 75524, - [SMALL_STATE(2490)] = 75537, - [SMALL_STATE(2491)] = 75550, - [SMALL_STATE(2492)] = 75563, - [SMALL_STATE(2493)] = 75576, - [SMALL_STATE(2494)] = 75589, - [SMALL_STATE(2495)] = 75602, - [SMALL_STATE(2496)] = 75615, - [SMALL_STATE(2497)] = 75628, - [SMALL_STATE(2498)] = 75641, - [SMALL_STATE(2499)] = 75654, - [SMALL_STATE(2500)] = 75667, - [SMALL_STATE(2501)] = 75680, - [SMALL_STATE(2502)] = 75693, - [SMALL_STATE(2503)] = 75706, - [SMALL_STATE(2504)] = 75719, - [SMALL_STATE(2505)] = 75732, - [SMALL_STATE(2506)] = 75745, - [SMALL_STATE(2507)] = 75758, - [SMALL_STATE(2508)] = 75771, - [SMALL_STATE(2509)] = 75784, - [SMALL_STATE(2510)] = 75797, - [SMALL_STATE(2511)] = 75810, - [SMALL_STATE(2512)] = 75823, - [SMALL_STATE(2513)] = 75836, - [SMALL_STATE(2514)] = 75849, - [SMALL_STATE(2515)] = 75862, - [SMALL_STATE(2516)] = 75875, - [SMALL_STATE(2517)] = 75888, - [SMALL_STATE(2518)] = 75901, - [SMALL_STATE(2519)] = 75914, - [SMALL_STATE(2520)] = 75927, - [SMALL_STATE(2521)] = 75940, - [SMALL_STATE(2522)] = 75953, - [SMALL_STATE(2523)] = 75966, - [SMALL_STATE(2524)] = 75979, - [SMALL_STATE(2525)] = 75992, - [SMALL_STATE(2526)] = 76005, - [SMALL_STATE(2527)] = 76018, - [SMALL_STATE(2528)] = 76031, - [SMALL_STATE(2529)] = 76044, - [SMALL_STATE(2530)] = 76057, - [SMALL_STATE(2531)] = 76070, - [SMALL_STATE(2532)] = 76083, - [SMALL_STATE(2533)] = 76096, - [SMALL_STATE(2534)] = 76109, - [SMALL_STATE(2535)] = 76122, - [SMALL_STATE(2536)] = 76135, - [SMALL_STATE(2537)] = 76148, - [SMALL_STATE(2538)] = 76161, - [SMALL_STATE(2539)] = 76174, - [SMALL_STATE(2540)] = 76187, - [SMALL_STATE(2541)] = 76200, - [SMALL_STATE(2542)] = 76213, - [SMALL_STATE(2543)] = 76226, - [SMALL_STATE(2544)] = 76239, - [SMALL_STATE(2545)] = 76252, - [SMALL_STATE(2546)] = 76265, - [SMALL_STATE(2547)] = 76278, - [SMALL_STATE(2548)] = 76291, - [SMALL_STATE(2549)] = 76304, - [SMALL_STATE(2550)] = 76317, - [SMALL_STATE(2551)] = 76330, - [SMALL_STATE(2552)] = 76343, - [SMALL_STATE(2553)] = 76356, - [SMALL_STATE(2554)] = 76369, - [SMALL_STATE(2555)] = 76382, - [SMALL_STATE(2556)] = 76395, - [SMALL_STATE(2557)] = 76408, - [SMALL_STATE(2558)] = 76421, - [SMALL_STATE(2559)] = 76434, - [SMALL_STATE(2560)] = 76447, - [SMALL_STATE(2561)] = 76460, - [SMALL_STATE(2562)] = 76473, - [SMALL_STATE(2563)] = 76486, - [SMALL_STATE(2564)] = 76499, - [SMALL_STATE(2565)] = 76512, - [SMALL_STATE(2566)] = 76525, - [SMALL_STATE(2567)] = 76538, - [SMALL_STATE(2568)] = 76551, - [SMALL_STATE(2569)] = 76564, - [SMALL_STATE(2570)] = 76577, - [SMALL_STATE(2571)] = 76590, - [SMALL_STATE(2572)] = 76603, - [SMALL_STATE(2573)] = 76616, - [SMALL_STATE(2574)] = 76629, - [SMALL_STATE(2575)] = 76642, - [SMALL_STATE(2576)] = 76655, - [SMALL_STATE(2577)] = 76668, - [SMALL_STATE(2578)] = 76681, - [SMALL_STATE(2579)] = 76694, - [SMALL_STATE(2580)] = 76707, - [SMALL_STATE(2581)] = 76720, - [SMALL_STATE(2582)] = 76733, - [SMALL_STATE(2583)] = 76746, - [SMALL_STATE(2584)] = 76759, - [SMALL_STATE(2585)] = 76772, - [SMALL_STATE(2586)] = 76785, - [SMALL_STATE(2587)] = 76798, - [SMALL_STATE(2588)] = 76811, - [SMALL_STATE(2589)] = 76824, - [SMALL_STATE(2590)] = 76837, - [SMALL_STATE(2591)] = 76850, - [SMALL_STATE(2592)] = 76863, - [SMALL_STATE(2593)] = 76876, - [SMALL_STATE(2594)] = 76889, - [SMALL_STATE(2595)] = 76902, - [SMALL_STATE(2596)] = 76915, - [SMALL_STATE(2597)] = 76928, - [SMALL_STATE(2598)] = 76941, - [SMALL_STATE(2599)] = 76954, - [SMALL_STATE(2600)] = 76967, - [SMALL_STATE(2601)] = 76980, - [SMALL_STATE(2602)] = 76993, - [SMALL_STATE(2603)] = 77006, - [SMALL_STATE(2604)] = 77019, - [SMALL_STATE(2605)] = 77032, - [SMALL_STATE(2606)] = 77045, - [SMALL_STATE(2607)] = 77058, - [SMALL_STATE(2608)] = 77071, - [SMALL_STATE(2609)] = 77084, - [SMALL_STATE(2610)] = 77097, - [SMALL_STATE(2611)] = 77110, - [SMALL_STATE(2612)] = 77123, - [SMALL_STATE(2613)] = 77136, - [SMALL_STATE(2614)] = 77149, - [SMALL_STATE(2615)] = 77162, - [SMALL_STATE(2616)] = 77175, - [SMALL_STATE(2617)] = 77188, - [SMALL_STATE(2618)] = 77201, - [SMALL_STATE(2619)] = 77214, - [SMALL_STATE(2620)] = 77227, - [SMALL_STATE(2621)] = 77240, - [SMALL_STATE(2622)] = 77253, - [SMALL_STATE(2623)] = 77266, - [SMALL_STATE(2624)] = 77279, - [SMALL_STATE(2625)] = 77292, - [SMALL_STATE(2626)] = 77305, - [SMALL_STATE(2627)] = 77318, - [SMALL_STATE(2628)] = 77331, - [SMALL_STATE(2629)] = 77344, - [SMALL_STATE(2630)] = 77357, - [SMALL_STATE(2631)] = 77370, - [SMALL_STATE(2632)] = 77383, - [SMALL_STATE(2633)] = 77396, - [SMALL_STATE(2634)] = 77409, - [SMALL_STATE(2635)] = 77422, - [SMALL_STATE(2636)] = 77435, - [SMALL_STATE(2637)] = 77448, - [SMALL_STATE(2638)] = 77461, - [SMALL_STATE(2639)] = 77474, - [SMALL_STATE(2640)] = 77487, - [SMALL_STATE(2641)] = 77500, - [SMALL_STATE(2642)] = 77513, - [SMALL_STATE(2643)] = 77526, - [SMALL_STATE(2644)] = 77539, - [SMALL_STATE(2645)] = 77552, - [SMALL_STATE(2646)] = 77565, - [SMALL_STATE(2647)] = 77578, - [SMALL_STATE(2648)] = 77591, - [SMALL_STATE(2649)] = 77604, - [SMALL_STATE(2650)] = 77617, - [SMALL_STATE(2651)] = 77630, - [SMALL_STATE(2652)] = 77643, - [SMALL_STATE(2653)] = 77656, - [SMALL_STATE(2654)] = 77669, - [SMALL_STATE(2655)] = 77682, - [SMALL_STATE(2656)] = 77695, - [SMALL_STATE(2657)] = 77708, - [SMALL_STATE(2658)] = 77721, - [SMALL_STATE(2659)] = 77734, - [SMALL_STATE(2660)] = 77747, - [SMALL_STATE(2661)] = 77760, - [SMALL_STATE(2662)] = 77773, - [SMALL_STATE(2663)] = 77786, - [SMALL_STATE(2664)] = 77799, - [SMALL_STATE(2665)] = 77812, - [SMALL_STATE(2666)] = 77825, - [SMALL_STATE(2667)] = 77838, - [SMALL_STATE(2668)] = 77851, - [SMALL_STATE(2669)] = 77864, - [SMALL_STATE(2670)] = 77877, - [SMALL_STATE(2671)] = 77890, - [SMALL_STATE(2672)] = 77903, - [SMALL_STATE(2673)] = 77916, - [SMALL_STATE(2674)] = 77929, - [SMALL_STATE(2675)] = 77942, - [SMALL_STATE(2676)] = 77955, - [SMALL_STATE(2677)] = 77968, - [SMALL_STATE(2678)] = 77981, - [SMALL_STATE(2679)] = 77994, - [SMALL_STATE(2680)] = 78007, - [SMALL_STATE(2681)] = 78020, - [SMALL_STATE(2682)] = 78033, - [SMALL_STATE(2683)] = 78046, - [SMALL_STATE(2684)] = 78059, - [SMALL_STATE(2685)] = 78072, - [SMALL_STATE(2686)] = 78085, - [SMALL_STATE(2687)] = 78098, - [SMALL_STATE(2688)] = 78111, - [SMALL_STATE(2689)] = 78124, - [SMALL_STATE(2690)] = 78137, - [SMALL_STATE(2691)] = 78150, - [SMALL_STATE(2692)] = 78163, - [SMALL_STATE(2693)] = 78176, - [SMALL_STATE(2694)] = 78189, - [SMALL_STATE(2695)] = 78202, - [SMALL_STATE(2696)] = 78215, - [SMALL_STATE(2697)] = 78228, - [SMALL_STATE(2698)] = 78241, - [SMALL_STATE(2699)] = 78254, - [SMALL_STATE(2700)] = 78267, - [SMALL_STATE(2701)] = 78280, - [SMALL_STATE(2702)] = 78293, - [SMALL_STATE(2703)] = 78306, - [SMALL_STATE(2704)] = 78319, - [SMALL_STATE(2705)] = 78332, - [SMALL_STATE(2706)] = 78345, - [SMALL_STATE(2707)] = 78358, - [SMALL_STATE(2708)] = 78371, - [SMALL_STATE(2709)] = 78384, - [SMALL_STATE(2710)] = 78397, - [SMALL_STATE(2711)] = 78410, - [SMALL_STATE(2712)] = 78423, - [SMALL_STATE(2713)] = 78436, - [SMALL_STATE(2714)] = 78449, - [SMALL_STATE(2715)] = 78462, - [SMALL_STATE(2716)] = 78475, - [SMALL_STATE(2717)] = 78488, - [SMALL_STATE(2718)] = 78501, - [SMALL_STATE(2719)] = 78505, + [SMALL_STATE(1199)] = 40454, + [SMALL_STATE(1200)] = 40535, + [SMALL_STATE(1201)] = 40626, + [SMALL_STATE(1202)] = 40709, + [SMALL_STATE(1203)] = 40780, + [SMALL_STATE(1204)] = 40863, + [SMALL_STATE(1205)] = 40954, + [SMALL_STATE(1206)] = 41045, + [SMALL_STATE(1207)] = 41098, + [SMALL_STATE(1208)] = 41183, + [SMALL_STATE(1209)] = 41263, + [SMALL_STATE(1210)] = 41343, + [SMALL_STATE(1211)] = 41423, + [SMALL_STATE(1212)] = 41503, + [SMALL_STATE(1213)] = 41583, + [SMALL_STATE(1214)] = 41663, + [SMALL_STATE(1215)] = 41743, + [SMALL_STATE(1216)] = 41823, + [SMALL_STATE(1217)] = 41891, + [SMALL_STATE(1218)] = 41973, + [SMALL_STATE(1219)] = 42017, + [SMALL_STATE(1220)] = 42097, + [SMALL_STATE(1221)] = 42179, + [SMALL_STATE(1222)] = 42259, + [SMALL_STATE(1223)] = 42339, + [SMALL_STATE(1224)] = 42419, + [SMALL_STATE(1225)] = 42499, + [SMALL_STATE(1226)] = 42579, + [SMALL_STATE(1227)] = 42659, + [SMALL_STATE(1228)] = 42727, + [SMALL_STATE(1229)] = 42807, + [SMALL_STATE(1230)] = 42887, + [SMALL_STATE(1231)] = 42967, + [SMALL_STATE(1232)] = 43049, + [SMALL_STATE(1233)] = 43129, + [SMALL_STATE(1234)] = 43211, + [SMALL_STATE(1235)] = 43291, + [SMALL_STATE(1236)] = 43373, + [SMALL_STATE(1237)] = 43453, + [SMALL_STATE(1238)] = 43533, + [SMALL_STATE(1239)] = 43613, + [SMALL_STATE(1240)] = 43693, + [SMALL_STATE(1241)] = 43773, + [SMALL_STATE(1242)] = 43853, + [SMALL_STATE(1243)] = 43933, + [SMALL_STATE(1244)] = 44013, + [SMALL_STATE(1245)] = 44093, + [SMALL_STATE(1246)] = 44173, + [SMALL_STATE(1247)] = 44255, + [SMALL_STATE(1248)] = 44337, + [SMALL_STATE(1249)] = 44417, + [SMALL_STATE(1250)] = 44499, + [SMALL_STATE(1251)] = 44579, + [SMALL_STATE(1252)] = 44658, + [SMALL_STATE(1253)] = 44737, + [SMALL_STATE(1254)] = 44816, + [SMALL_STATE(1255)] = 44895, + [SMALL_STATE(1256)] = 44974, + [SMALL_STATE(1257)] = 45053, + [SMALL_STATE(1258)] = 45132, + [SMALL_STATE(1259)] = 45211, + [SMALL_STATE(1260)] = 45290, + [SMALL_STATE(1261)] = 45369, + [SMALL_STATE(1262)] = 45448, + [SMALL_STATE(1263)] = 45529, + [SMALL_STATE(1264)] = 45608, + [SMALL_STATE(1265)] = 45687, + [SMALL_STATE(1266)] = 45766, + [SMALL_STATE(1267)] = 45845, + [SMALL_STATE(1268)] = 45924, + [SMALL_STATE(1269)] = 46003, + [SMALL_STATE(1270)] = 46082, + [SMALL_STATE(1271)] = 46161, + [SMALL_STATE(1272)] = 46240, + [SMALL_STATE(1273)] = 46319, + [SMALL_STATE(1274)] = 46398, + [SMALL_STATE(1275)] = 46477, + [SMALL_STATE(1276)] = 46556, + [SMALL_STATE(1277)] = 46635, + [SMALL_STATE(1278)] = 46714, + [SMALL_STATE(1279)] = 46793, + [SMALL_STATE(1280)] = 46872, + [SMALL_STATE(1281)] = 46951, + [SMALL_STATE(1282)] = 47030, + [SMALL_STATE(1283)] = 47109, + [SMALL_STATE(1284)] = 47188, + [SMALL_STATE(1285)] = 47267, + [SMALL_STATE(1286)] = 47346, + [SMALL_STATE(1287)] = 47427, + [SMALL_STATE(1288)] = 47506, + [SMALL_STATE(1289)] = 47585, + [SMALL_STATE(1290)] = 47664, + [SMALL_STATE(1291)] = 47743, + [SMALL_STATE(1292)] = 47824, + [SMALL_STATE(1293)] = 47903, + [SMALL_STATE(1294)] = 47982, + [SMALL_STATE(1295)] = 48061, + [SMALL_STATE(1296)] = 48140, + [SMALL_STATE(1297)] = 48183, + [SMALL_STATE(1298)] = 48226, + [SMALL_STATE(1299)] = 48305, + [SMALL_STATE(1300)] = 48384, + [SMALL_STATE(1301)] = 48463, + [SMALL_STATE(1302)] = 48542, + [SMALL_STATE(1303)] = 48621, + [SMALL_STATE(1304)] = 48700, + [SMALL_STATE(1305)] = 48779, + [SMALL_STATE(1306)] = 48858, + [SMALL_STATE(1307)] = 48937, + [SMALL_STATE(1308)] = 49016, + [SMALL_STATE(1309)] = 49095, + [SMALL_STATE(1310)] = 49174, + [SMALL_STATE(1311)] = 49253, + [SMALL_STATE(1312)] = 49332, + [SMALL_STATE(1313)] = 49411, + [SMALL_STATE(1314)] = 49490, + [SMALL_STATE(1315)] = 49569, + [SMALL_STATE(1316)] = 49648, + [SMALL_STATE(1317)] = 49727, + [SMALL_STATE(1318)] = 49806, + [SMALL_STATE(1319)] = 49885, + [SMALL_STATE(1320)] = 49964, + [SMALL_STATE(1321)] = 50045, + [SMALL_STATE(1322)] = 50090, + [SMALL_STATE(1323)] = 50169, + [SMALL_STATE(1324)] = 50248, + [SMALL_STATE(1325)] = 50290, + [SMALL_STATE(1326)] = 50332, + [SMALL_STATE(1327)] = 50374, + [SMALL_STATE(1328)] = 50416, + [SMALL_STATE(1329)] = 50463, + [SMALL_STATE(1330)] = 50508, + [SMALL_STATE(1331)] = 50565, + [SMALL_STATE(1332)] = 50622, + [SMALL_STATE(1333)] = 50661, + [SMALL_STATE(1334)] = 50718, + [SMALL_STATE(1335)] = 50757, + [SMALL_STATE(1336)] = 50814, + [SMALL_STATE(1337)] = 50853, + [SMALL_STATE(1338)] = 50910, + [SMALL_STATE(1339)] = 50967, + [SMALL_STATE(1340)] = 51006, + [SMALL_STATE(1341)] = 51063, + [SMALL_STATE(1342)] = 51120, + [SMALL_STATE(1343)] = 51177, + [SMALL_STATE(1344)] = 51234, + [SMALL_STATE(1345)] = 51291, + [SMALL_STATE(1346)] = 51345, + [SMALL_STATE(1347)] = 51399, + [SMALL_STATE(1348)] = 51453, + [SMALL_STATE(1349)] = 51507, + [SMALL_STATE(1350)] = 51561, + [SMALL_STATE(1351)] = 51615, + [SMALL_STATE(1352)] = 51662, + [SMALL_STATE(1353)] = 51709, + [SMALL_STATE(1354)] = 51756, + [SMALL_STATE(1355)] = 51791, + [SMALL_STATE(1356)] = 51825, + [SMALL_STATE(1357)] = 51884, + [SMALL_STATE(1358)] = 51936, + [SMALL_STATE(1359)] = 51988, + [SMALL_STATE(1360)] = 52042, + [SMALL_STATE(1361)] = 52093, + [SMALL_STATE(1362)] = 52142, + [SMALL_STATE(1363)] = 52191, + [SMALL_STATE(1364)] = 52242, + [SMALL_STATE(1365)] = 52293, + [SMALL_STATE(1366)] = 52342, + [SMALL_STATE(1367)] = 52375, + [SMALL_STATE(1368)] = 52410, + [SMALL_STATE(1369)] = 52440, + [SMALL_STATE(1370)] = 52484, + [SMALL_STATE(1371)] = 52511, + [SMALL_STATE(1372)] = 52538, + [SMALL_STATE(1373)] = 52565, + [SMALL_STATE(1374)] = 52610, + [SMALL_STATE(1375)] = 52637, + [SMALL_STATE(1376)] = 52663, + [SMALL_STATE(1377)] = 52689, + [SMALL_STATE(1378)] = 52715, + [SMALL_STATE(1379)] = 52741, + [SMALL_STATE(1380)] = 52767, + [SMALL_STATE(1381)] = 52793, + [SMALL_STATE(1382)] = 52839, + [SMALL_STATE(1383)] = 52883, + [SMALL_STATE(1384)] = 52929, + [SMALL_STATE(1385)] = 52975, + [SMALL_STATE(1386)] = 53001, + [SMALL_STATE(1387)] = 53027, + [SMALL_STATE(1388)] = 53053, + [SMALL_STATE(1389)] = 53079, + [SMALL_STATE(1390)] = 53105, + [SMALL_STATE(1391)] = 53131, + [SMALL_STATE(1392)] = 53169, + [SMALL_STATE(1393)] = 53195, + [SMALL_STATE(1394)] = 53221, + [SMALL_STATE(1395)] = 53247, + [SMALL_STATE(1396)] = 53273, + [SMALL_STATE(1397)] = 53299, + [SMALL_STATE(1398)] = 53325, + [SMALL_STATE(1399)] = 53371, + [SMALL_STATE(1400)] = 53396, + [SMALL_STATE(1401)] = 53437, + [SMALL_STATE(1402)] = 53478, + [SMALL_STATE(1403)] = 53521, + [SMALL_STATE(1404)] = 53546, + [SMALL_STATE(1405)] = 53571, + [SMALL_STATE(1406)] = 53596, + [SMALL_STATE(1407)] = 53639, + [SMALL_STATE(1408)] = 53682, + [SMALL_STATE(1409)] = 53709, + [SMALL_STATE(1410)] = 53734, + [SMALL_STATE(1411)] = 53781, + [SMALL_STATE(1412)] = 53806, + [SMALL_STATE(1413)] = 53831, + [SMALL_STATE(1414)] = 53856, + [SMALL_STATE(1415)] = 53903, + [SMALL_STATE(1416)] = 53946, + [SMALL_STATE(1417)] = 53971, + [SMALL_STATE(1418)] = 53996, + [SMALL_STATE(1419)] = 54021, + [SMALL_STATE(1420)] = 54046, + [SMALL_STATE(1421)] = 54071, + [SMALL_STATE(1422)] = 54102, + [SMALL_STATE(1423)] = 54127, + [SMALL_STATE(1424)] = 54152, + [SMALL_STATE(1425)] = 54177, + [SMALL_STATE(1426)] = 54202, + [SMALL_STATE(1427)] = 54227, + [SMALL_STATE(1428)] = 54252, + [SMALL_STATE(1429)] = 54277, + [SMALL_STATE(1430)] = 54302, + [SMALL_STATE(1431)] = 54343, + [SMALL_STATE(1432)] = 54368, + [SMALL_STATE(1433)] = 54393, + [SMALL_STATE(1434)] = 54418, + [SMALL_STATE(1435)] = 54443, + [SMALL_STATE(1436)] = 54468, + [SMALL_STATE(1437)] = 54493, + [SMALL_STATE(1438)] = 54518, + [SMALL_STATE(1439)] = 54551, + [SMALL_STATE(1440)] = 54591, + [SMALL_STATE(1441)] = 54627, + [SMALL_STATE(1442)] = 54667, + [SMALL_STATE(1443)] = 54707, + [SMALL_STATE(1444)] = 54747, + [SMALL_STATE(1445)] = 54784, + [SMALL_STATE(1446)] = 54819, + [SMALL_STATE(1447)] = 54856, + [SMALL_STATE(1448)] = 54881, + [SMALL_STATE(1449)] = 54906, + [SMALL_STATE(1450)] = 54939, + [SMALL_STATE(1451)] = 54974, + [SMALL_STATE(1452)] = 55011, + [SMALL_STATE(1453)] = 55036, + [SMALL_STATE(1454)] = 55061, + [SMALL_STATE(1455)] = 55094, + [SMALL_STATE(1456)] = 55131, + [SMALL_STATE(1457)] = 55166, + [SMALL_STATE(1458)] = 55203, + [SMALL_STATE(1459)] = 55240, + [SMALL_STATE(1460)] = 55264, + [SMALL_STATE(1461)] = 55288, + [SMALL_STATE(1462)] = 55322, + [SMALL_STATE(1463)] = 55350, + [SMALL_STATE(1464)] = 55374, + [SMALL_STATE(1465)] = 55398, + [SMALL_STATE(1466)] = 55422, + [SMALL_STATE(1467)] = 55446, + [SMALL_STATE(1468)] = 55470, + [SMALL_STATE(1469)] = 55494, + [SMALL_STATE(1470)] = 55518, + [SMALL_STATE(1471)] = 55542, + [SMALL_STATE(1472)] = 55566, + [SMALL_STATE(1473)] = 55590, + [SMALL_STATE(1474)] = 55624, + [SMALL_STATE(1475)] = 55658, + [SMALL_STATE(1476)] = 55682, + [SMALL_STATE(1477)] = 55706, + [SMALL_STATE(1478)] = 55734, + [SMALL_STATE(1479)] = 55758, + [SMALL_STATE(1480)] = 55790, + [SMALL_STATE(1481)] = 55818, + [SMALL_STATE(1482)] = 55842, + [SMALL_STATE(1483)] = 55866, + [SMALL_STATE(1484)] = 55898, + [SMALL_STATE(1485)] = 55926, + [SMALL_STATE(1486)] = 55952, + [SMALL_STATE(1487)] = 55982, + [SMALL_STATE(1488)] = 56016, + [SMALL_STATE(1489)] = 56048, + [SMALL_STATE(1490)] = 56082, + [SMALL_STATE(1491)] = 56103, + [SMALL_STATE(1492)] = 56134, + [SMALL_STATE(1493)] = 56163, + [SMALL_STATE(1494)] = 56192, + [SMALL_STATE(1495)] = 56221, + [SMALL_STATE(1496)] = 56246, + [SMALL_STATE(1497)] = 56277, + [SMALL_STATE(1498)] = 56304, + [SMALL_STATE(1499)] = 56333, + [SMALL_STATE(1500)] = 56362, + [SMALL_STATE(1501)] = 56391, + [SMALL_STATE(1502)] = 56420, + [SMALL_STATE(1503)] = 56451, + [SMALL_STATE(1504)] = 56482, + [SMALL_STATE(1505)] = 56511, + [SMALL_STATE(1506)] = 56540, + [SMALL_STATE(1507)] = 56565, + [SMALL_STATE(1508)] = 56594, + [SMALL_STATE(1509)] = 56623, + [SMALL_STATE(1510)] = 56644, + [SMALL_STATE(1511)] = 56671, + [SMALL_STATE(1512)] = 56692, + [SMALL_STATE(1513)] = 56713, + [SMALL_STATE(1514)] = 56740, + [SMALL_STATE(1515)] = 56773, + [SMALL_STATE(1516)] = 56804, + [SMALL_STATE(1517)] = 56833, + [SMALL_STATE(1518)] = 56854, + [SMALL_STATE(1519)] = 56881, + [SMALL_STATE(1520)] = 56910, + [SMALL_STATE(1521)] = 56931, + [SMALL_STATE(1522)] = 56952, + [SMALL_STATE(1523)] = 56981, + [SMALL_STATE(1524)] = 57008, + [SMALL_STATE(1525)] = 57031, + [SMALL_STATE(1526)] = 57060, + [SMALL_STATE(1527)] = 57089, + [SMALL_STATE(1528)] = 57122, + [SMALL_STATE(1529)] = 57153, + [SMALL_STATE(1530)] = 57180, + [SMALL_STATE(1531)] = 57209, + [SMALL_STATE(1532)] = 57238, + [SMALL_STATE(1533)] = 57265, + [SMALL_STATE(1534)] = 57296, + [SMALL_STATE(1535)] = 57327, + [SMALL_STATE(1536)] = 57356, + [SMALL_STATE(1537)] = 57387, + [SMALL_STATE(1538)] = 57416, + [SMALL_STATE(1539)] = 57445, + [SMALL_STATE(1540)] = 57472, + [SMALL_STATE(1541)] = 57501, + [SMALL_STATE(1542)] = 57530, + [SMALL_STATE(1543)] = 57557, + [SMALL_STATE(1544)] = 57584, + [SMALL_STATE(1545)] = 57611, + [SMALL_STATE(1546)] = 57640, + [SMALL_STATE(1547)] = 57671, + [SMALL_STATE(1548)] = 57702, + [SMALL_STATE(1549)] = 57731, + [SMALL_STATE(1550)] = 57760, + [SMALL_STATE(1551)] = 57791, + [SMALL_STATE(1552)] = 57820, + [SMALL_STATE(1553)] = 57851, + [SMALL_STATE(1554)] = 57874, + [SMALL_STATE(1555)] = 57903, + [SMALL_STATE(1556)] = 57932, + [SMALL_STATE(1557)] = 57966, + [SMALL_STATE(1558)] = 57998, + [SMALL_STATE(1559)] = 58024, + [SMALL_STATE(1560)] = 58058, + [SMALL_STATE(1561)] = 58092, + [SMALL_STATE(1562)] = 58118, + [SMALL_STATE(1563)] = 58152, + [SMALL_STATE(1564)] = 58182, + [SMALL_STATE(1565)] = 58208, + [SMALL_STATE(1566)] = 58236, + [SMALL_STATE(1567)] = 58270, + [SMALL_STATE(1568)] = 58300, + [SMALL_STATE(1569)] = 58326, + [SMALL_STATE(1570)] = 58360, + [SMALL_STATE(1571)] = 58381, + [SMALL_STATE(1572)] = 58408, + [SMALL_STATE(1573)] = 58429, + [SMALL_STATE(1574)] = 58456, + [SMALL_STATE(1575)] = 58479, + [SMALL_STATE(1576)] = 58506, + [SMALL_STATE(1577)] = 58527, + [SMALL_STATE(1578)] = 58548, + [SMALL_STATE(1579)] = 58569, + [SMALL_STATE(1580)] = 58592, + [SMALL_STATE(1581)] = 58613, + [SMALL_STATE(1582)] = 58640, + [SMALL_STATE(1583)] = 58661, + [SMALL_STATE(1584)] = 58682, + [SMALL_STATE(1585)] = 58709, + [SMALL_STATE(1586)] = 58736, + [SMALL_STATE(1587)] = 58765, + [SMALL_STATE(1588)] = 58796, + [SMALL_STATE(1589)] = 58819, + [SMALL_STATE(1590)] = 58842, + [SMALL_STATE(1591)] = 58865, + [SMALL_STATE(1592)] = 58888, + [SMALL_STATE(1593)] = 58911, + [SMALL_STATE(1594)] = 58932, + [SMALL_STATE(1595)] = 58955, + [SMALL_STATE(1596)] = 58976, + [SMALL_STATE(1597)] = 58999, + [SMALL_STATE(1598)] = 59022, + [SMALL_STATE(1599)] = 59047, + [SMALL_STATE(1600)] = 59068, + [SMALL_STATE(1601)] = 59091, + [SMALL_STATE(1602)] = 59114, + [SMALL_STATE(1603)] = 59137, + [SMALL_STATE(1604)] = 59160, + [SMALL_STATE(1605)] = 59181, + [SMALL_STATE(1606)] = 59204, + [SMALL_STATE(1607)] = 59225, + [SMALL_STATE(1608)] = 59246, + [SMALL_STATE(1609)] = 59269, + [SMALL_STATE(1610)] = 59290, + [SMALL_STATE(1611)] = 59313, + [SMALL_STATE(1612)] = 59336, + [SMALL_STATE(1613)] = 59363, + [SMALL_STATE(1614)] = 59389, + [SMALL_STATE(1615)] = 59417, + [SMALL_STATE(1616)] = 59445, + [SMALL_STATE(1617)] = 59471, + [SMALL_STATE(1618)] = 59497, + [SMALL_STATE(1619)] = 59517, + [SMALL_STATE(1620)] = 59545, + [SMALL_STATE(1621)] = 59565, + [SMALL_STATE(1622)] = 59591, + [SMALL_STATE(1623)] = 59617, + [SMALL_STATE(1624)] = 59645, + [SMALL_STATE(1625)] = 59669, + [SMALL_STATE(1626)] = 59697, + [SMALL_STATE(1627)] = 59717, + [SMALL_STATE(1628)] = 59745, + [SMALL_STATE(1629)] = 59765, + [SMALL_STATE(1630)] = 59785, + [SMALL_STATE(1631)] = 59811, + [SMALL_STATE(1632)] = 59837, + [SMALL_STATE(1633)] = 59865, + [SMALL_STATE(1634)] = 59885, + [SMALL_STATE(1635)] = 59913, + [SMALL_STATE(1636)] = 59933, + [SMALL_STATE(1637)] = 59961, + [SMALL_STATE(1638)] = 59985, + [SMALL_STATE(1639)] = 60011, + [SMALL_STATE(1640)] = 60035, + [SMALL_STATE(1641)] = 60063, + [SMALL_STATE(1642)] = 60091, + [SMALL_STATE(1643)] = 60119, + [SMALL_STATE(1644)] = 60147, + [SMALL_STATE(1645)] = 60175, + [SMALL_STATE(1646)] = 60195, + [SMALL_STATE(1647)] = 60219, + [SMALL_STATE(1648)] = 60245, + [SMALL_STATE(1649)] = 60273, + [SMALL_STATE(1650)] = 60301, + [SMALL_STATE(1651)] = 60329, + [SMALL_STATE(1652)] = 60357, + [SMALL_STATE(1653)] = 60383, + [SMALL_STATE(1654)] = 60411, + [SMALL_STATE(1655)] = 60439, + [SMALL_STATE(1656)] = 60461, + [SMALL_STATE(1657)] = 60485, + [SMALL_STATE(1658)] = 60513, + [SMALL_STATE(1659)] = 60541, + [SMALL_STATE(1660)] = 60569, + [SMALL_STATE(1661)] = 60593, + [SMALL_STATE(1662)] = 60621, + [SMALL_STATE(1663)] = 60649, + [SMALL_STATE(1664)] = 60677, + [SMALL_STATE(1665)] = 60705, + [SMALL_STATE(1666)] = 60731, + [SMALL_STATE(1667)] = 60759, + [SMALL_STATE(1668)] = 60787, + [SMALL_STATE(1669)] = 60815, + [SMALL_STATE(1670)] = 60843, + [SMALL_STATE(1671)] = 60863, + [SMALL_STATE(1672)] = 60891, + [SMALL_STATE(1673)] = 60917, + [SMALL_STATE(1674)] = 60945, + [SMALL_STATE(1675)] = 60973, + [SMALL_STATE(1676)] = 61001, + [SMALL_STATE(1677)] = 61029, + [SMALL_STATE(1678)] = 61049, + [SMALL_STATE(1679)] = 61073, + [SMALL_STATE(1680)] = 61099, + [SMALL_STATE(1681)] = 61127, + [SMALL_STATE(1682)] = 61155, + [SMALL_STATE(1683)] = 61183, + [SMALL_STATE(1684)] = 61211, + [SMALL_STATE(1685)] = 61232, + [SMALL_STATE(1686)] = 61253, + [SMALL_STATE(1687)] = 61276, + [SMALL_STATE(1688)] = 61299, + [SMALL_STATE(1689)] = 61320, + [SMALL_STATE(1690)] = 61341, + [SMALL_STATE(1691)] = 61366, + [SMALL_STATE(1692)] = 61391, + [SMALL_STATE(1693)] = 61412, + [SMALL_STATE(1694)] = 61433, + [SMALL_STATE(1695)] = 61452, + [SMALL_STATE(1696)] = 61477, + [SMALL_STATE(1697)] = 61496, + [SMALL_STATE(1698)] = 61521, + [SMALL_STATE(1699)] = 61546, + [SMALL_STATE(1700)] = 61565, + [SMALL_STATE(1701)] = 61586, + [SMALL_STATE(1702)] = 61605, + [SMALL_STATE(1703)] = 61626, + [SMALL_STATE(1704)] = 61651, + [SMALL_STATE(1705)] = 61676, + [SMALL_STATE(1706)] = 61701, + [SMALL_STATE(1707)] = 61722, + [SMALL_STATE(1708)] = 61745, + [SMALL_STATE(1709)] = 61766, + [SMALL_STATE(1710)] = 61789, + [SMALL_STATE(1711)] = 61812, + [SMALL_STATE(1712)] = 61837, + [SMALL_STATE(1713)] = 61858, + [SMALL_STATE(1714)] = 61881, + [SMALL_STATE(1715)] = 61904, + [SMALL_STATE(1716)] = 61925, + [SMALL_STATE(1717)] = 61944, + [SMALL_STATE(1718)] = 61969, + [SMALL_STATE(1719)] = 61994, + [SMALL_STATE(1720)] = 62017, + [SMALL_STATE(1721)] = 62036, + [SMALL_STATE(1722)] = 62061, + [SMALL_STATE(1723)] = 62086, + [SMALL_STATE(1724)] = 62111, + [SMALL_STATE(1725)] = 62136, + [SMALL_STATE(1726)] = 62157, + [SMALL_STATE(1727)] = 62178, + [SMALL_STATE(1728)] = 62199, + [SMALL_STATE(1729)] = 62222, + [SMALL_STATE(1730)] = 62243, + [SMALL_STATE(1731)] = 62266, + [SMALL_STATE(1732)] = 62287, + [SMALL_STATE(1733)] = 62308, + [SMALL_STATE(1734)] = 62331, + [SMALL_STATE(1735)] = 62354, + [SMALL_STATE(1736)] = 62377, + [SMALL_STATE(1737)] = 62398, + [SMALL_STATE(1738)] = 62421, + [SMALL_STATE(1739)] = 62442, + [SMALL_STATE(1740)] = 62467, + [SMALL_STATE(1741)] = 62492, + [SMALL_STATE(1742)] = 62513, + [SMALL_STATE(1743)] = 62536, + [SMALL_STATE(1744)] = 62559, + [SMALL_STATE(1745)] = 62578, + [SMALL_STATE(1746)] = 62601, + [SMALL_STATE(1747)] = 62618, + [SMALL_STATE(1748)] = 62641, + [SMALL_STATE(1749)] = 62662, + [SMALL_STATE(1750)] = 62683, + [SMALL_STATE(1751)] = 62708, + [SMALL_STATE(1752)] = 62729, + [SMALL_STATE(1753)] = 62750, + [SMALL_STATE(1754)] = 62769, + [SMALL_STATE(1755)] = 62790, + [SMALL_STATE(1756)] = 62811, + [SMALL_STATE(1757)] = 62828, + [SMALL_STATE(1758)] = 62849, + [SMALL_STATE(1759)] = 62870, + [SMALL_STATE(1760)] = 62891, + [SMALL_STATE(1761)] = 62914, + [SMALL_STATE(1762)] = 62935, + [SMALL_STATE(1763)] = 62952, + [SMALL_STATE(1764)] = 62973, + [SMALL_STATE(1765)] = 62994, + [SMALL_STATE(1766)] = 63017, + [SMALL_STATE(1767)] = 63040, + [SMALL_STATE(1768)] = 63057, + [SMALL_STATE(1769)] = 63076, + [SMALL_STATE(1770)] = 63099, + [SMALL_STATE(1771)] = 63120, + [SMALL_STATE(1772)] = 63141, + [SMALL_STATE(1773)] = 63164, + [SMALL_STATE(1774)] = 63185, + [SMALL_STATE(1775)] = 63204, + [SMALL_STATE(1776)] = 63225, + [SMALL_STATE(1777)] = 63250, + [SMALL_STATE(1778)] = 63275, + [SMALL_STATE(1779)] = 63294, + [SMALL_STATE(1780)] = 63315, + [SMALL_STATE(1781)] = 63338, + [SMALL_STATE(1782)] = 63355, + [SMALL_STATE(1783)] = 63376, + [SMALL_STATE(1784)] = 63395, + [SMALL_STATE(1785)] = 63416, + [SMALL_STATE(1786)] = 63438, + [SMALL_STATE(1787)] = 63460, + [SMALL_STATE(1788)] = 63482, + [SMALL_STATE(1789)] = 63504, + [SMALL_STATE(1790)] = 63522, + [SMALL_STATE(1791)] = 63542, + [SMALL_STATE(1792)] = 63564, + [SMALL_STATE(1793)] = 63586, + [SMALL_STATE(1794)] = 63602, + [SMALL_STATE(1795)] = 63618, + [SMALL_STATE(1796)] = 63634, + [SMALL_STATE(1797)] = 63652, + [SMALL_STATE(1798)] = 63670, + [SMALL_STATE(1799)] = 63686, + [SMALL_STATE(1800)] = 63706, + [SMALL_STATE(1801)] = 63726, + [SMALL_STATE(1802)] = 63748, + [SMALL_STATE(1803)] = 63770, + [SMALL_STATE(1804)] = 63792, + [SMALL_STATE(1805)] = 63808, + [SMALL_STATE(1806)] = 63826, + [SMALL_STATE(1807)] = 63848, + [SMALL_STATE(1808)] = 63868, + [SMALL_STATE(1809)] = 63888, + [SMALL_STATE(1810)] = 63908, + [SMALL_STATE(1811)] = 63924, + [SMALL_STATE(1812)] = 63944, + [SMALL_STATE(1813)] = 63962, + [SMALL_STATE(1814)] = 63982, + [SMALL_STATE(1815)] = 64002, + [SMALL_STATE(1816)] = 64022, + [SMALL_STATE(1817)] = 64042, + [SMALL_STATE(1818)] = 64060, + [SMALL_STATE(1819)] = 64080, + [SMALL_STATE(1820)] = 64098, + [SMALL_STATE(1821)] = 64120, + [SMALL_STATE(1822)] = 64138, + [SMALL_STATE(1823)] = 64160, + [SMALL_STATE(1824)] = 64182, + [SMALL_STATE(1825)] = 64202, + [SMALL_STATE(1826)] = 64222, + [SMALL_STATE(1827)] = 64244, + [SMALL_STATE(1828)] = 64264, + [SMALL_STATE(1829)] = 64284, + [SMALL_STATE(1830)] = 64306, + [SMALL_STATE(1831)] = 64324, + [SMALL_STATE(1832)] = 64344, + [SMALL_STATE(1833)] = 64366, + [SMALL_STATE(1834)] = 64384, + [SMALL_STATE(1835)] = 64406, + [SMALL_STATE(1836)] = 64428, + [SMALL_STATE(1837)] = 64448, + [SMALL_STATE(1838)] = 64464, + [SMALL_STATE(1839)] = 64480, + [SMALL_STATE(1840)] = 64496, + [SMALL_STATE(1841)] = 64518, + [SMALL_STATE(1842)] = 64540, + [SMALL_STATE(1843)] = 64562, + [SMALL_STATE(1844)] = 64582, + [SMALL_STATE(1845)] = 64598, + [SMALL_STATE(1846)] = 64620, + [SMALL_STATE(1847)] = 64642, + [SMALL_STATE(1848)] = 64658, + [SMALL_STATE(1849)] = 64680, + [SMALL_STATE(1850)] = 64702, + [SMALL_STATE(1851)] = 64724, + [SMALL_STATE(1852)] = 64746, + [SMALL_STATE(1853)] = 64762, + [SMALL_STATE(1854)] = 64784, + [SMALL_STATE(1855)] = 64806, + [SMALL_STATE(1856)] = 64828, + [SMALL_STATE(1857)] = 64850, + [SMALL_STATE(1858)] = 64872, + [SMALL_STATE(1859)] = 64892, + [SMALL_STATE(1860)] = 64914, + [SMALL_STATE(1861)] = 64934, + [SMALL_STATE(1862)] = 64956, + [SMALL_STATE(1863)] = 64978, + [SMALL_STATE(1864)] = 65000, + [SMALL_STATE(1865)] = 65022, + [SMALL_STATE(1866)] = 65040, + [SMALL_STATE(1867)] = 65060, + [SMALL_STATE(1868)] = 65080, + [SMALL_STATE(1869)] = 65102, + [SMALL_STATE(1870)] = 65122, + [SMALL_STATE(1871)] = 65140, + [SMALL_STATE(1872)] = 65162, + [SMALL_STATE(1873)] = 65180, + [SMALL_STATE(1874)] = 65200, + [SMALL_STATE(1875)] = 65222, + [SMALL_STATE(1876)] = 65242, + [SMALL_STATE(1877)] = 65264, + [SMALL_STATE(1878)] = 65286, + [SMALL_STATE(1879)] = 65308, + [SMALL_STATE(1880)] = 65330, + [SMALL_STATE(1881)] = 65352, + [SMALL_STATE(1882)] = 65374, + [SMALL_STATE(1883)] = 65394, + [SMALL_STATE(1884)] = 65416, + [SMALL_STATE(1885)] = 65436, + [SMALL_STATE(1886)] = 65458, + [SMALL_STATE(1887)] = 65480, + [SMALL_STATE(1888)] = 65500, + [SMALL_STATE(1889)] = 65520, + [SMALL_STATE(1890)] = 65540, + [SMALL_STATE(1891)] = 65560, + [SMALL_STATE(1892)] = 65580, + [SMALL_STATE(1893)] = 65600, + [SMALL_STATE(1894)] = 65620, + [SMALL_STATE(1895)] = 65640, + [SMALL_STATE(1896)] = 65658, + [SMALL_STATE(1897)] = 65680, + [SMALL_STATE(1898)] = 65698, + [SMALL_STATE(1899)] = 65720, + [SMALL_STATE(1900)] = 65736, + [SMALL_STATE(1901)] = 65756, + [SMALL_STATE(1902)] = 65778, + [SMALL_STATE(1903)] = 65798, + [SMALL_STATE(1904)] = 65818, + [SMALL_STATE(1905)] = 65840, + [SMALL_STATE(1906)] = 65860, + [SMALL_STATE(1907)] = 65876, + [SMALL_STATE(1908)] = 65896, + [SMALL_STATE(1909)] = 65916, + [SMALL_STATE(1910)] = 65936, + [SMALL_STATE(1911)] = 65958, + [SMALL_STATE(1912)] = 65980, + [SMALL_STATE(1913)] = 65996, + [SMALL_STATE(1914)] = 66016, + [SMALL_STATE(1915)] = 66038, + [SMALL_STATE(1916)] = 66054, + [SMALL_STATE(1917)] = 66074, + [SMALL_STATE(1918)] = 66094, + [SMALL_STATE(1919)] = 66114, + [SMALL_STATE(1920)] = 66130, + [SMALL_STATE(1921)] = 66150, + [SMALL_STATE(1922)] = 66170, + [SMALL_STATE(1923)] = 66190, + [SMALL_STATE(1924)] = 66210, + [SMALL_STATE(1925)] = 66230, + [SMALL_STATE(1926)] = 66246, + [SMALL_STATE(1927)] = 66268, + [SMALL_STATE(1928)] = 66284, + [SMALL_STATE(1929)] = 66304, + [SMALL_STATE(1930)] = 66324, + [SMALL_STATE(1931)] = 66344, + [SMALL_STATE(1932)] = 66364, + [SMALL_STATE(1933)] = 66386, + [SMALL_STATE(1934)] = 66402, + [SMALL_STATE(1935)] = 66424, + [SMALL_STATE(1936)] = 66446, + [SMALL_STATE(1937)] = 66468, + [SMALL_STATE(1938)] = 66488, + [SMALL_STATE(1939)] = 66508, + [SMALL_STATE(1940)] = 66528, + [SMALL_STATE(1941)] = 66546, + [SMALL_STATE(1942)] = 66565, + [SMALL_STATE(1943)] = 66580, + [SMALL_STATE(1944)] = 66597, + [SMALL_STATE(1945)] = 66616, + [SMALL_STATE(1946)] = 66635, + [SMALL_STATE(1947)] = 66654, + [SMALL_STATE(1948)] = 66673, + [SMALL_STATE(1949)] = 66692, + [SMALL_STATE(1950)] = 66711, + [SMALL_STATE(1951)] = 66728, + [SMALL_STATE(1952)] = 66747, + [SMALL_STATE(1953)] = 66766, + [SMALL_STATE(1954)] = 66783, + [SMALL_STATE(1955)] = 66802, + [SMALL_STATE(1956)] = 66821, + [SMALL_STATE(1957)] = 66840, + [SMALL_STATE(1958)] = 66859, + [SMALL_STATE(1959)] = 66878, + [SMALL_STATE(1960)] = 66897, + [SMALL_STATE(1961)] = 66916, + [SMALL_STATE(1962)] = 66935, + [SMALL_STATE(1963)] = 66954, + [SMALL_STATE(1964)] = 66973, + [SMALL_STATE(1965)] = 66992, + [SMALL_STATE(1966)] = 67009, + [SMALL_STATE(1967)] = 67024, + [SMALL_STATE(1968)] = 67043, + [SMALL_STATE(1969)] = 67062, + [SMALL_STATE(1970)] = 67081, + [SMALL_STATE(1971)] = 67100, + [SMALL_STATE(1972)] = 67119, + [SMALL_STATE(1973)] = 67138, + [SMALL_STATE(1974)] = 67157, + [SMALL_STATE(1975)] = 67176, + [SMALL_STATE(1976)] = 67193, + [SMALL_STATE(1977)] = 67212, + [SMALL_STATE(1978)] = 67231, + [SMALL_STATE(1979)] = 67250, + [SMALL_STATE(1980)] = 67269, + [SMALL_STATE(1981)] = 67284, + [SMALL_STATE(1982)] = 67303, + [SMALL_STATE(1983)] = 67322, + [SMALL_STATE(1984)] = 67341, + [SMALL_STATE(1985)] = 67360, + [SMALL_STATE(1986)] = 67379, + [SMALL_STATE(1987)] = 67396, + [SMALL_STATE(1988)] = 67415, + [SMALL_STATE(1989)] = 67434, + [SMALL_STATE(1990)] = 67453, + [SMALL_STATE(1991)] = 67472, + [SMALL_STATE(1992)] = 67487, + [SMALL_STATE(1993)] = 67506, + [SMALL_STATE(1994)] = 67521, + [SMALL_STATE(1995)] = 67540, + [SMALL_STATE(1996)] = 67559, + [SMALL_STATE(1997)] = 67574, + [SMALL_STATE(1998)] = 67589, + [SMALL_STATE(1999)] = 67606, + [SMALL_STATE(2000)] = 67623, + [SMALL_STATE(2001)] = 67642, + [SMALL_STATE(2002)] = 67661, + [SMALL_STATE(2003)] = 67678, + [SMALL_STATE(2004)] = 67697, + [SMALL_STATE(2005)] = 67714, + [SMALL_STATE(2006)] = 67733, + [SMALL_STATE(2007)] = 67752, + [SMALL_STATE(2008)] = 67769, + [SMALL_STATE(2009)] = 67788, + [SMALL_STATE(2010)] = 67805, + [SMALL_STATE(2011)] = 67824, + [SMALL_STATE(2012)] = 67841, + [SMALL_STATE(2013)] = 67858, + [SMALL_STATE(2014)] = 67875, + [SMALL_STATE(2015)] = 67892, + [SMALL_STATE(2016)] = 67909, + [SMALL_STATE(2017)] = 67926, + [SMALL_STATE(2018)] = 67943, + [SMALL_STATE(2019)] = 67958, + [SMALL_STATE(2020)] = 67975, + [SMALL_STATE(2021)] = 67994, + [SMALL_STATE(2022)] = 68011, + [SMALL_STATE(2023)] = 68030, + [SMALL_STATE(2024)] = 68047, + [SMALL_STATE(2025)] = 68066, + [SMALL_STATE(2026)] = 68083, + [SMALL_STATE(2027)] = 68100, + [SMALL_STATE(2028)] = 68119, + [SMALL_STATE(2029)] = 68136, + [SMALL_STATE(2030)] = 68153, + [SMALL_STATE(2031)] = 68168, + [SMALL_STATE(2032)] = 68183, + [SMALL_STATE(2033)] = 68200, + [SMALL_STATE(2034)] = 68219, + [SMALL_STATE(2035)] = 68236, + [SMALL_STATE(2036)] = 68253, + [SMALL_STATE(2037)] = 68270, + [SMALL_STATE(2038)] = 68287, + [SMALL_STATE(2039)] = 68306, + [SMALL_STATE(2040)] = 68321, + [SMALL_STATE(2041)] = 68338, + [SMALL_STATE(2042)] = 68355, + [SMALL_STATE(2043)] = 68372, + [SMALL_STATE(2044)] = 68391, + [SMALL_STATE(2045)] = 68410, + [SMALL_STATE(2046)] = 68427, + [SMALL_STATE(2047)] = 68446, + [SMALL_STATE(2048)] = 68463, + [SMALL_STATE(2049)] = 68482, + [SMALL_STATE(2050)] = 68499, + [SMALL_STATE(2051)] = 68518, + [SMALL_STATE(2052)] = 68535, + [SMALL_STATE(2053)] = 68554, + [SMALL_STATE(2054)] = 68571, + [SMALL_STATE(2055)] = 68590, + [SMALL_STATE(2056)] = 68607, + [SMALL_STATE(2057)] = 68626, + [SMALL_STATE(2058)] = 68643, + [SMALL_STATE(2059)] = 68660, + [SMALL_STATE(2060)] = 68677, + [SMALL_STATE(2061)] = 68694, + [SMALL_STATE(2062)] = 68711, + [SMALL_STATE(2063)] = 68728, + [SMALL_STATE(2064)] = 68745, + [SMALL_STATE(2065)] = 68762, + [SMALL_STATE(2066)] = 68779, + [SMALL_STATE(2067)] = 68796, + [SMALL_STATE(2068)] = 68813, + [SMALL_STATE(2069)] = 68832, + [SMALL_STATE(2070)] = 68849, + [SMALL_STATE(2071)] = 68866, + [SMALL_STATE(2072)] = 68885, + [SMALL_STATE(2073)] = 68904, + [SMALL_STATE(2074)] = 68921, + [SMALL_STATE(2075)] = 68940, + [SMALL_STATE(2076)] = 68957, + [SMALL_STATE(2077)] = 68974, + [SMALL_STATE(2078)] = 68993, + [SMALL_STATE(2079)] = 69012, + [SMALL_STATE(2080)] = 69031, + [SMALL_STATE(2081)] = 69048, + [SMALL_STATE(2082)] = 69067, + [SMALL_STATE(2083)] = 69086, + [SMALL_STATE(2084)] = 69105, + [SMALL_STATE(2085)] = 69124, + [SMALL_STATE(2086)] = 69141, + [SMALL_STATE(2087)] = 69160, + [SMALL_STATE(2088)] = 69179, + [SMALL_STATE(2089)] = 69198, + [SMALL_STATE(2090)] = 69215, + [SMALL_STATE(2091)] = 69230, + [SMALL_STATE(2092)] = 69245, + [SMALL_STATE(2093)] = 69264, + [SMALL_STATE(2094)] = 69281, + [SMALL_STATE(2095)] = 69298, + [SMALL_STATE(2096)] = 69315, + [SMALL_STATE(2097)] = 69332, + [SMALL_STATE(2098)] = 69349, + [SMALL_STATE(2099)] = 69366, + [SMALL_STATE(2100)] = 69383, + [SMALL_STATE(2101)] = 69400, + [SMALL_STATE(2102)] = 69417, + [SMALL_STATE(2103)] = 69434, + [SMALL_STATE(2104)] = 69451, + [SMALL_STATE(2105)] = 69468, + [SMALL_STATE(2106)] = 69485, + [SMALL_STATE(2107)] = 69502, + [SMALL_STATE(2108)] = 69519, + [SMALL_STATE(2109)] = 69536, + [SMALL_STATE(2110)] = 69553, + [SMALL_STATE(2111)] = 69570, + [SMALL_STATE(2112)] = 69587, + [SMALL_STATE(2113)] = 69604, + [SMALL_STATE(2114)] = 69621, + [SMALL_STATE(2115)] = 69638, + [SMALL_STATE(2116)] = 69655, + [SMALL_STATE(2117)] = 69672, + [SMALL_STATE(2118)] = 69691, + [SMALL_STATE(2119)] = 69708, + [SMALL_STATE(2120)] = 69725, + [SMALL_STATE(2121)] = 69744, + [SMALL_STATE(2122)] = 69763, + [SMALL_STATE(2123)] = 69780, + [SMALL_STATE(2124)] = 69797, + [SMALL_STATE(2125)] = 69814, + [SMALL_STATE(2126)] = 69831, + [SMALL_STATE(2127)] = 69848, + [SMALL_STATE(2128)] = 69865, + [SMALL_STATE(2129)] = 69880, + [SMALL_STATE(2130)] = 69897, + [SMALL_STATE(2131)] = 69914, + [SMALL_STATE(2132)] = 69931, + [SMALL_STATE(2133)] = 69948, + [SMALL_STATE(2134)] = 69965, + [SMALL_STATE(2135)] = 69984, + [SMALL_STATE(2136)] = 70001, + [SMALL_STATE(2137)] = 70018, + [SMALL_STATE(2138)] = 70035, + [SMALL_STATE(2139)] = 70052, + [SMALL_STATE(2140)] = 70069, + [SMALL_STATE(2141)] = 70086, + [SMALL_STATE(2142)] = 70103, + [SMALL_STATE(2143)] = 70122, + [SMALL_STATE(2144)] = 70139, + [SMALL_STATE(2145)] = 70156, + [SMALL_STATE(2146)] = 70171, + [SMALL_STATE(2147)] = 70186, + [SMALL_STATE(2148)] = 70203, + [SMALL_STATE(2149)] = 70220, + [SMALL_STATE(2150)] = 70237, + [SMALL_STATE(2151)] = 70256, + [SMALL_STATE(2152)] = 70273, + [SMALL_STATE(2153)] = 70292, + [SMALL_STATE(2154)] = 70311, + [SMALL_STATE(2155)] = 70328, + [SMALL_STATE(2156)] = 70345, + [SMALL_STATE(2157)] = 70362, + [SMALL_STATE(2158)] = 70379, + [SMALL_STATE(2159)] = 70396, + [SMALL_STATE(2160)] = 70413, + [SMALL_STATE(2161)] = 70432, + [SMALL_STATE(2162)] = 70449, + [SMALL_STATE(2163)] = 70466, + [SMALL_STATE(2164)] = 70483, + [SMALL_STATE(2165)] = 70500, + [SMALL_STATE(2166)] = 70517, + [SMALL_STATE(2167)] = 70534, + [SMALL_STATE(2168)] = 70551, + [SMALL_STATE(2169)] = 70568, + [SMALL_STATE(2170)] = 70585, + [SMALL_STATE(2171)] = 70602, + [SMALL_STATE(2172)] = 70619, + [SMALL_STATE(2173)] = 70636, + [SMALL_STATE(2174)] = 70651, + [SMALL_STATE(2175)] = 70668, + [SMALL_STATE(2176)] = 70685, + [SMALL_STATE(2177)] = 70702, + [SMALL_STATE(2178)] = 70719, + [SMALL_STATE(2179)] = 70734, + [SMALL_STATE(2180)] = 70749, + [SMALL_STATE(2181)] = 70766, + [SMALL_STATE(2182)] = 70783, + [SMALL_STATE(2183)] = 70800, + [SMALL_STATE(2184)] = 70815, + [SMALL_STATE(2185)] = 70832, + [SMALL_STATE(2186)] = 70851, + [SMALL_STATE(2187)] = 70870, + [SMALL_STATE(2188)] = 70887, + [SMALL_STATE(2189)] = 70906, + [SMALL_STATE(2190)] = 70923, + [SMALL_STATE(2191)] = 70940, + [SMALL_STATE(2192)] = 70955, + [SMALL_STATE(2193)] = 70974, + [SMALL_STATE(2194)] = 70991, + [SMALL_STATE(2195)] = 71010, + [SMALL_STATE(2196)] = 71029, + [SMALL_STATE(2197)] = 71044, + [SMALL_STATE(2198)] = 71063, + [SMALL_STATE(2199)] = 71082, + [SMALL_STATE(2200)] = 71097, + [SMALL_STATE(2201)] = 71112, + [SMALL_STATE(2202)] = 71131, + [SMALL_STATE(2203)] = 71146, + [SMALL_STATE(2204)] = 71161, + [SMALL_STATE(2205)] = 71180, + [SMALL_STATE(2206)] = 71197, + [SMALL_STATE(2207)] = 71214, + [SMALL_STATE(2208)] = 71231, + [SMALL_STATE(2209)] = 71250, + [SMALL_STATE(2210)] = 71269, + [SMALL_STATE(2211)] = 71283, + [SMALL_STATE(2212)] = 71299, + [SMALL_STATE(2213)] = 71315, + [SMALL_STATE(2214)] = 71331, + [SMALL_STATE(2215)] = 71345, + [SMALL_STATE(2216)] = 71359, + [SMALL_STATE(2217)] = 71373, + [SMALL_STATE(2218)] = 71389, + [SMALL_STATE(2219)] = 71405, + [SMALL_STATE(2220)] = 71419, + [SMALL_STATE(2221)] = 71433, + [SMALL_STATE(2222)] = 71447, + [SMALL_STATE(2223)] = 71463, + [SMALL_STATE(2224)] = 71477, + [SMALL_STATE(2225)] = 71491, + [SMALL_STATE(2226)] = 71505, + [SMALL_STATE(2227)] = 71521, + [SMALL_STATE(2228)] = 71537, + [SMALL_STATE(2229)] = 71551, + [SMALL_STATE(2230)] = 71565, + [SMALL_STATE(2231)] = 71579, + [SMALL_STATE(2232)] = 71595, + [SMALL_STATE(2233)] = 71611, + [SMALL_STATE(2234)] = 71627, + [SMALL_STATE(2235)] = 71643, + [SMALL_STATE(2236)] = 71659, + [SMALL_STATE(2237)] = 71675, + [SMALL_STATE(2238)] = 71691, + [SMALL_STATE(2239)] = 71707, + [SMALL_STATE(2240)] = 71723, + [SMALL_STATE(2241)] = 71739, + [SMALL_STATE(2242)] = 71755, + [SMALL_STATE(2243)] = 71771, + [SMALL_STATE(2244)] = 71785, + [SMALL_STATE(2245)] = 71801, + [SMALL_STATE(2246)] = 71817, + [SMALL_STATE(2247)] = 71833, + [SMALL_STATE(2248)] = 71847, + [SMALL_STATE(2249)] = 71861, + [SMALL_STATE(2250)] = 71877, + [SMALL_STATE(2251)] = 71893, + [SMALL_STATE(2252)] = 71907, + [SMALL_STATE(2253)] = 71921, + [SMALL_STATE(2254)] = 71937, + [SMALL_STATE(2255)] = 71951, + [SMALL_STATE(2256)] = 71965, + [SMALL_STATE(2257)] = 71979, + [SMALL_STATE(2258)] = 71993, + [SMALL_STATE(2259)] = 72009, + [SMALL_STATE(2260)] = 72025, + [SMALL_STATE(2261)] = 72039, + [SMALL_STATE(2262)] = 72053, + [SMALL_STATE(2263)] = 72067, + [SMALL_STATE(2264)] = 72083, + [SMALL_STATE(2265)] = 72097, + [SMALL_STATE(2266)] = 72111, + [SMALL_STATE(2267)] = 72125, + [SMALL_STATE(2268)] = 72139, + [SMALL_STATE(2269)] = 72155, + [SMALL_STATE(2270)] = 72171, + [SMALL_STATE(2271)] = 72187, + [SMALL_STATE(2272)] = 72203, + [SMALL_STATE(2273)] = 72219, + [SMALL_STATE(2274)] = 72235, + [SMALL_STATE(2275)] = 72251, + [SMALL_STATE(2276)] = 72265, + [SMALL_STATE(2277)] = 72281, + [SMALL_STATE(2278)] = 72297, + [SMALL_STATE(2279)] = 72313, + [SMALL_STATE(2280)] = 72329, + [SMALL_STATE(2281)] = 72343, + [SMALL_STATE(2282)] = 72357, + [SMALL_STATE(2283)] = 72373, + [SMALL_STATE(2284)] = 72389, + [SMALL_STATE(2285)] = 72403, + [SMALL_STATE(2286)] = 72417, + [SMALL_STATE(2287)] = 72431, + [SMALL_STATE(2288)] = 72445, + [SMALL_STATE(2289)] = 72461, + [SMALL_STATE(2290)] = 72475, + [SMALL_STATE(2291)] = 72491, + [SMALL_STATE(2292)] = 72507, + [SMALL_STATE(2293)] = 72523, + [SMALL_STATE(2294)] = 72539, + [SMALL_STATE(2295)] = 72553, + [SMALL_STATE(2296)] = 72569, + [SMALL_STATE(2297)] = 72585, + [SMALL_STATE(2298)] = 72601, + [SMALL_STATE(2299)] = 72617, + [SMALL_STATE(2300)] = 72633, + [SMALL_STATE(2301)] = 72647, + [SMALL_STATE(2302)] = 72661, + [SMALL_STATE(2303)] = 72677, + [SMALL_STATE(2304)] = 72691, + [SMALL_STATE(2305)] = 72707, + [SMALL_STATE(2306)] = 72721, + [SMALL_STATE(2307)] = 72735, + [SMALL_STATE(2308)] = 72749, + [SMALL_STATE(2309)] = 72765, + [SMALL_STATE(2310)] = 72781, + [SMALL_STATE(2311)] = 72797, + [SMALL_STATE(2312)] = 72813, + [SMALL_STATE(2313)] = 72829, + [SMALL_STATE(2314)] = 72845, + [SMALL_STATE(2315)] = 72861, + [SMALL_STATE(2316)] = 72877, + [SMALL_STATE(2317)] = 72893, + [SMALL_STATE(2318)] = 72909, + [SMALL_STATE(2319)] = 72925, + [SMALL_STATE(2320)] = 72941, + [SMALL_STATE(2321)] = 72957, + [SMALL_STATE(2322)] = 72973, + [SMALL_STATE(2323)] = 72989, + [SMALL_STATE(2324)] = 73005, + [SMALL_STATE(2325)] = 73021, + [SMALL_STATE(2326)] = 73037, + [SMALL_STATE(2327)] = 73053, + [SMALL_STATE(2328)] = 73067, + [SMALL_STATE(2329)] = 73083, + [SMALL_STATE(2330)] = 73097, + [SMALL_STATE(2331)] = 73113, + [SMALL_STATE(2332)] = 73127, + [SMALL_STATE(2333)] = 73143, + [SMALL_STATE(2334)] = 73159, + [SMALL_STATE(2335)] = 73175, + [SMALL_STATE(2336)] = 73189, + [SMALL_STATE(2337)] = 73203, + [SMALL_STATE(2338)] = 73219, + [SMALL_STATE(2339)] = 73235, + [SMALL_STATE(2340)] = 73251, + [SMALL_STATE(2341)] = 73267, + [SMALL_STATE(2342)] = 73281, + [SMALL_STATE(2343)] = 73297, + [SMALL_STATE(2344)] = 73311, + [SMALL_STATE(2345)] = 73325, + [SMALL_STATE(2346)] = 73339, + [SMALL_STATE(2347)] = 73355, + [SMALL_STATE(2348)] = 73369, + [SMALL_STATE(2349)] = 73383, + [SMALL_STATE(2350)] = 73399, + [SMALL_STATE(2351)] = 73415, + [SMALL_STATE(2352)] = 73431, + [SMALL_STATE(2353)] = 73447, + [SMALL_STATE(2354)] = 73461, + [SMALL_STATE(2355)] = 73475, + [SMALL_STATE(2356)] = 73491, + [SMALL_STATE(2357)] = 73507, + [SMALL_STATE(2358)] = 73521, + [SMALL_STATE(2359)] = 73535, + [SMALL_STATE(2360)] = 73551, + [SMALL_STATE(2361)] = 73565, + [SMALL_STATE(2362)] = 73581, + [SMALL_STATE(2363)] = 73597, + [SMALL_STATE(2364)] = 73613, + [SMALL_STATE(2365)] = 73629, + [SMALL_STATE(2366)] = 73645, + [SMALL_STATE(2367)] = 73659, + [SMALL_STATE(2368)] = 73673, + [SMALL_STATE(2369)] = 73689, + [SMALL_STATE(2370)] = 73705, + [SMALL_STATE(2371)] = 73721, + [SMALL_STATE(2372)] = 73737, + [SMALL_STATE(2373)] = 73753, + [SMALL_STATE(2374)] = 73769, + [SMALL_STATE(2375)] = 73785, + [SMALL_STATE(2376)] = 73801, + [SMALL_STATE(2377)] = 73817, + [SMALL_STATE(2378)] = 73833, + [SMALL_STATE(2379)] = 73849, + [SMALL_STATE(2380)] = 73865, + [SMALL_STATE(2381)] = 73879, + [SMALL_STATE(2382)] = 73893, + [SMALL_STATE(2383)] = 73909, + [SMALL_STATE(2384)] = 73925, + [SMALL_STATE(2385)] = 73939, + [SMALL_STATE(2386)] = 73953, + [SMALL_STATE(2387)] = 73969, + [SMALL_STATE(2388)] = 73985, + [SMALL_STATE(2389)] = 73999, + [SMALL_STATE(2390)] = 74013, + [SMALL_STATE(2391)] = 74027, + [SMALL_STATE(2392)] = 74043, + [SMALL_STATE(2393)] = 74059, + [SMALL_STATE(2394)] = 74075, + [SMALL_STATE(2395)] = 74091, + [SMALL_STATE(2396)] = 74107, + [SMALL_STATE(2397)] = 74123, + [SMALL_STATE(2398)] = 74139, + [SMALL_STATE(2399)] = 74155, + [SMALL_STATE(2400)] = 74171, + [SMALL_STATE(2401)] = 74187, + [SMALL_STATE(2402)] = 74203, + [SMALL_STATE(2403)] = 74217, + [SMALL_STATE(2404)] = 74231, + [SMALL_STATE(2405)] = 74247, + [SMALL_STATE(2406)] = 74261, + [SMALL_STATE(2407)] = 74275, + [SMALL_STATE(2408)] = 74289, + [SMALL_STATE(2409)] = 74305, + [SMALL_STATE(2410)] = 74321, + [SMALL_STATE(2411)] = 74337, + [SMALL_STATE(2412)] = 74351, + [SMALL_STATE(2413)] = 74367, + [SMALL_STATE(2414)] = 74383, + [SMALL_STATE(2415)] = 74397, + [SMALL_STATE(2416)] = 74413, + [SMALL_STATE(2417)] = 74429, + [SMALL_STATE(2418)] = 74445, + [SMALL_STATE(2419)] = 74461, + [SMALL_STATE(2420)] = 74477, + [SMALL_STATE(2421)] = 74491, + [SMALL_STATE(2422)] = 74507, + [SMALL_STATE(2423)] = 74523, + [SMALL_STATE(2424)] = 74539, + [SMALL_STATE(2425)] = 74555, + [SMALL_STATE(2426)] = 74569, + [SMALL_STATE(2427)] = 74585, + [SMALL_STATE(2428)] = 74601, + [SMALL_STATE(2429)] = 74615, + [SMALL_STATE(2430)] = 74631, + [SMALL_STATE(2431)] = 74647, + [SMALL_STATE(2432)] = 74663, + [SMALL_STATE(2433)] = 74677, + [SMALL_STATE(2434)] = 74693, + [SMALL_STATE(2435)] = 74709, + [SMALL_STATE(2436)] = 74725, + [SMALL_STATE(2437)] = 74739, + [SMALL_STATE(2438)] = 74755, + [SMALL_STATE(2439)] = 74771, + [SMALL_STATE(2440)] = 74787, + [SMALL_STATE(2441)] = 74801, + [SMALL_STATE(2442)] = 74817, + [SMALL_STATE(2443)] = 74833, + [SMALL_STATE(2444)] = 74847, + [SMALL_STATE(2445)] = 74861, + [SMALL_STATE(2446)] = 74877, + [SMALL_STATE(2447)] = 74891, + [SMALL_STATE(2448)] = 74905, + [SMALL_STATE(2449)] = 74921, + [SMALL_STATE(2450)] = 74935, + [SMALL_STATE(2451)] = 74949, + [SMALL_STATE(2452)] = 74965, + [SMALL_STATE(2453)] = 74981, + [SMALL_STATE(2454)] = 74995, + [SMALL_STATE(2455)] = 75009, + [SMALL_STATE(2456)] = 75025, + [SMALL_STATE(2457)] = 75039, + [SMALL_STATE(2458)] = 75055, + [SMALL_STATE(2459)] = 75071, + [SMALL_STATE(2460)] = 75087, + [SMALL_STATE(2461)] = 75103, + [SMALL_STATE(2462)] = 75117, + [SMALL_STATE(2463)] = 75131, + [SMALL_STATE(2464)] = 75147, + [SMALL_STATE(2465)] = 75163, + [SMALL_STATE(2466)] = 75179, + [SMALL_STATE(2467)] = 75195, + [SMALL_STATE(2468)] = 75211, + [SMALL_STATE(2469)] = 75227, + [SMALL_STATE(2470)] = 75243, + [SMALL_STATE(2471)] = 75259, + [SMALL_STATE(2472)] = 75275, + [SMALL_STATE(2473)] = 75291, + [SMALL_STATE(2474)] = 75305, + [SMALL_STATE(2475)] = 75319, + [SMALL_STATE(2476)] = 75335, + [SMALL_STATE(2477)] = 75349, + [SMALL_STATE(2478)] = 75363, + [SMALL_STATE(2479)] = 75379, + [SMALL_STATE(2480)] = 75395, + [SMALL_STATE(2481)] = 75411, + [SMALL_STATE(2482)] = 75425, + [SMALL_STATE(2483)] = 75441, + [SMALL_STATE(2484)] = 75457, + [SMALL_STATE(2485)] = 75473, + [SMALL_STATE(2486)] = 75489, + [SMALL_STATE(2487)] = 75502, + [SMALL_STATE(2488)] = 75515, + [SMALL_STATE(2489)] = 75528, + [SMALL_STATE(2490)] = 75541, + [SMALL_STATE(2491)] = 75554, + [SMALL_STATE(2492)] = 75567, + [SMALL_STATE(2493)] = 75580, + [SMALL_STATE(2494)] = 75593, + [SMALL_STATE(2495)] = 75606, + [SMALL_STATE(2496)] = 75619, + [SMALL_STATE(2497)] = 75632, + [SMALL_STATE(2498)] = 75645, + [SMALL_STATE(2499)] = 75658, + [SMALL_STATE(2500)] = 75671, + [SMALL_STATE(2501)] = 75684, + [SMALL_STATE(2502)] = 75697, + [SMALL_STATE(2503)] = 75710, + [SMALL_STATE(2504)] = 75723, + [SMALL_STATE(2505)] = 75736, + [SMALL_STATE(2506)] = 75749, + [SMALL_STATE(2507)] = 75762, + [SMALL_STATE(2508)] = 75775, + [SMALL_STATE(2509)] = 75788, + [SMALL_STATE(2510)] = 75801, + [SMALL_STATE(2511)] = 75814, + [SMALL_STATE(2512)] = 75827, + [SMALL_STATE(2513)] = 75840, + [SMALL_STATE(2514)] = 75853, + [SMALL_STATE(2515)] = 75866, + [SMALL_STATE(2516)] = 75879, + [SMALL_STATE(2517)] = 75892, + [SMALL_STATE(2518)] = 75905, + [SMALL_STATE(2519)] = 75918, + [SMALL_STATE(2520)] = 75931, + [SMALL_STATE(2521)] = 75944, + [SMALL_STATE(2522)] = 75957, + [SMALL_STATE(2523)] = 75970, + [SMALL_STATE(2524)] = 75983, + [SMALL_STATE(2525)] = 75996, + [SMALL_STATE(2526)] = 76009, + [SMALL_STATE(2527)] = 76022, + [SMALL_STATE(2528)] = 76035, + [SMALL_STATE(2529)] = 76048, + [SMALL_STATE(2530)] = 76061, + [SMALL_STATE(2531)] = 76074, + [SMALL_STATE(2532)] = 76087, + [SMALL_STATE(2533)] = 76100, + [SMALL_STATE(2534)] = 76113, + [SMALL_STATE(2535)] = 76126, + [SMALL_STATE(2536)] = 76139, + [SMALL_STATE(2537)] = 76152, + [SMALL_STATE(2538)] = 76165, + [SMALL_STATE(2539)] = 76178, + [SMALL_STATE(2540)] = 76191, + [SMALL_STATE(2541)] = 76204, + [SMALL_STATE(2542)] = 76217, + [SMALL_STATE(2543)] = 76230, + [SMALL_STATE(2544)] = 76243, + [SMALL_STATE(2545)] = 76256, + [SMALL_STATE(2546)] = 76269, + [SMALL_STATE(2547)] = 76282, + [SMALL_STATE(2548)] = 76295, + [SMALL_STATE(2549)] = 76308, + [SMALL_STATE(2550)] = 76321, + [SMALL_STATE(2551)] = 76334, + [SMALL_STATE(2552)] = 76347, + [SMALL_STATE(2553)] = 76360, + [SMALL_STATE(2554)] = 76373, + [SMALL_STATE(2555)] = 76386, + [SMALL_STATE(2556)] = 76399, + [SMALL_STATE(2557)] = 76412, + [SMALL_STATE(2558)] = 76425, + [SMALL_STATE(2559)] = 76438, + [SMALL_STATE(2560)] = 76451, + [SMALL_STATE(2561)] = 76464, + [SMALL_STATE(2562)] = 76477, + [SMALL_STATE(2563)] = 76490, + [SMALL_STATE(2564)] = 76503, + [SMALL_STATE(2565)] = 76516, + [SMALL_STATE(2566)] = 76529, + [SMALL_STATE(2567)] = 76542, + [SMALL_STATE(2568)] = 76555, + [SMALL_STATE(2569)] = 76568, + [SMALL_STATE(2570)] = 76581, + [SMALL_STATE(2571)] = 76594, + [SMALL_STATE(2572)] = 76607, + [SMALL_STATE(2573)] = 76620, + [SMALL_STATE(2574)] = 76633, + [SMALL_STATE(2575)] = 76646, + [SMALL_STATE(2576)] = 76659, + [SMALL_STATE(2577)] = 76672, + [SMALL_STATE(2578)] = 76685, + [SMALL_STATE(2579)] = 76698, + [SMALL_STATE(2580)] = 76711, + [SMALL_STATE(2581)] = 76724, + [SMALL_STATE(2582)] = 76737, + [SMALL_STATE(2583)] = 76750, + [SMALL_STATE(2584)] = 76763, + [SMALL_STATE(2585)] = 76776, + [SMALL_STATE(2586)] = 76789, + [SMALL_STATE(2587)] = 76802, + [SMALL_STATE(2588)] = 76815, + [SMALL_STATE(2589)] = 76828, + [SMALL_STATE(2590)] = 76841, + [SMALL_STATE(2591)] = 76854, + [SMALL_STATE(2592)] = 76867, + [SMALL_STATE(2593)] = 76880, + [SMALL_STATE(2594)] = 76893, + [SMALL_STATE(2595)] = 76906, + [SMALL_STATE(2596)] = 76919, + [SMALL_STATE(2597)] = 76932, + [SMALL_STATE(2598)] = 76945, + [SMALL_STATE(2599)] = 76958, + [SMALL_STATE(2600)] = 76971, + [SMALL_STATE(2601)] = 76984, + [SMALL_STATE(2602)] = 76997, + [SMALL_STATE(2603)] = 77010, + [SMALL_STATE(2604)] = 77023, + [SMALL_STATE(2605)] = 77036, + [SMALL_STATE(2606)] = 77049, + [SMALL_STATE(2607)] = 77062, + [SMALL_STATE(2608)] = 77075, + [SMALL_STATE(2609)] = 77088, + [SMALL_STATE(2610)] = 77101, + [SMALL_STATE(2611)] = 77114, + [SMALL_STATE(2612)] = 77127, + [SMALL_STATE(2613)] = 77140, + [SMALL_STATE(2614)] = 77153, + [SMALL_STATE(2615)] = 77166, + [SMALL_STATE(2616)] = 77179, + [SMALL_STATE(2617)] = 77192, + [SMALL_STATE(2618)] = 77205, + [SMALL_STATE(2619)] = 77218, + [SMALL_STATE(2620)] = 77231, + [SMALL_STATE(2621)] = 77244, + [SMALL_STATE(2622)] = 77257, + [SMALL_STATE(2623)] = 77270, + [SMALL_STATE(2624)] = 77283, + [SMALL_STATE(2625)] = 77296, + [SMALL_STATE(2626)] = 77309, + [SMALL_STATE(2627)] = 77322, + [SMALL_STATE(2628)] = 77335, + [SMALL_STATE(2629)] = 77348, + [SMALL_STATE(2630)] = 77361, + [SMALL_STATE(2631)] = 77374, + [SMALL_STATE(2632)] = 77387, + [SMALL_STATE(2633)] = 77400, + [SMALL_STATE(2634)] = 77413, + [SMALL_STATE(2635)] = 77426, + [SMALL_STATE(2636)] = 77439, + [SMALL_STATE(2637)] = 77452, + [SMALL_STATE(2638)] = 77465, + [SMALL_STATE(2639)] = 77478, + [SMALL_STATE(2640)] = 77491, + [SMALL_STATE(2641)] = 77504, + [SMALL_STATE(2642)] = 77517, + [SMALL_STATE(2643)] = 77530, + [SMALL_STATE(2644)] = 77543, + [SMALL_STATE(2645)] = 77556, + [SMALL_STATE(2646)] = 77569, + [SMALL_STATE(2647)] = 77582, + [SMALL_STATE(2648)] = 77595, + [SMALL_STATE(2649)] = 77608, + [SMALL_STATE(2650)] = 77621, + [SMALL_STATE(2651)] = 77634, + [SMALL_STATE(2652)] = 77647, + [SMALL_STATE(2653)] = 77660, + [SMALL_STATE(2654)] = 77673, + [SMALL_STATE(2655)] = 77686, + [SMALL_STATE(2656)] = 77699, + [SMALL_STATE(2657)] = 77712, + [SMALL_STATE(2658)] = 77725, + [SMALL_STATE(2659)] = 77738, + [SMALL_STATE(2660)] = 77751, + [SMALL_STATE(2661)] = 77764, + [SMALL_STATE(2662)] = 77777, + [SMALL_STATE(2663)] = 77790, + [SMALL_STATE(2664)] = 77803, + [SMALL_STATE(2665)] = 77816, + [SMALL_STATE(2666)] = 77829, + [SMALL_STATE(2667)] = 77842, + [SMALL_STATE(2668)] = 77855, + [SMALL_STATE(2669)] = 77868, + [SMALL_STATE(2670)] = 77881, + [SMALL_STATE(2671)] = 77894, + [SMALL_STATE(2672)] = 77907, + [SMALL_STATE(2673)] = 77920, + [SMALL_STATE(2674)] = 77933, + [SMALL_STATE(2675)] = 77946, + [SMALL_STATE(2676)] = 77959, + [SMALL_STATE(2677)] = 77972, + [SMALL_STATE(2678)] = 77985, + [SMALL_STATE(2679)] = 77998, + [SMALL_STATE(2680)] = 78011, + [SMALL_STATE(2681)] = 78024, + [SMALL_STATE(2682)] = 78037, + [SMALL_STATE(2683)] = 78050, + [SMALL_STATE(2684)] = 78063, + [SMALL_STATE(2685)] = 78076, + [SMALL_STATE(2686)] = 78089, + [SMALL_STATE(2687)] = 78102, + [SMALL_STATE(2688)] = 78115, + [SMALL_STATE(2689)] = 78128, + [SMALL_STATE(2690)] = 78141, + [SMALL_STATE(2691)] = 78154, + [SMALL_STATE(2692)] = 78167, + [SMALL_STATE(2693)] = 78180, + [SMALL_STATE(2694)] = 78193, + [SMALL_STATE(2695)] = 78206, + [SMALL_STATE(2696)] = 78219, + [SMALL_STATE(2697)] = 78232, + [SMALL_STATE(2698)] = 78245, + [SMALL_STATE(2699)] = 78258, + [SMALL_STATE(2700)] = 78271, + [SMALL_STATE(2701)] = 78284, + [SMALL_STATE(2702)] = 78297, + [SMALL_STATE(2703)] = 78310, + [SMALL_STATE(2704)] = 78323, + [SMALL_STATE(2705)] = 78336, + [SMALL_STATE(2706)] = 78349, + [SMALL_STATE(2707)] = 78362, + [SMALL_STATE(2708)] = 78375, + [SMALL_STATE(2709)] = 78388, + [SMALL_STATE(2710)] = 78401, + [SMALL_STATE(2711)] = 78414, + [SMALL_STATE(2712)] = 78427, + [SMALL_STATE(2713)] = 78440, + [SMALL_STATE(2714)] = 78453, + [SMALL_STATE(2715)] = 78466, + [SMALL_STATE(2716)] = 78479, + [SMALL_STATE(2717)] = 78492, + [SMALL_STATE(2718)] = 78505, + [SMALL_STATE(2719)] = 78509, }; static const TSParseActionEntry ts_parse_actions[] = { diff --git a/php_only/src/grammar.json b/php_only/src/grammar.json index 3552325f..1ebea83b 100644 --- a/php_only/src/grammar.json +++ b/php_only/src/grammar.json @@ -1459,45 +1459,49 @@ "name": "_const_declaration" }, "_class_const_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attribute_list" + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "SYMBOL", + "name": "attribute_list" + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "modifier", - "content": { - "type": "SYMBOL", - "name": "final_modifier" + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "modifier", + "content": { + "type": "SYMBOL", + "name": "final_modifier" + } + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_const_declaration" - } - ] + ] + }, + { + "type": "SYMBOL", + "name": "_const_declaration" + } + ] + } }, "_const_declaration": { "type": "SEQ", diff --git a/php_only/src/parser.c b/php_only/src/parser.c index b4586b62..59eed8ff 100644 --- a/php_only/src/parser.c +++ b/php_only/src/parser.c @@ -106927,7 +106927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36002] = 6, + [36002] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(2415), 1, @@ -106936,12 +106936,16 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2618), 1, sym_visibility_modifier, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, ACTIONS(2417), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2413), 24, + ACTIONS(2413), 21, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -106951,9 +106955,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -106966,7 +106967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [36047] = 21, + [36049] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2419), 1, @@ -107020,7 +107021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36122] = 21, + [36124] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -107074,7 +107075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36197] = 23, + [36199] = 23, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -107130,7 +107131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36276] = 22, + [36278] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -107185,7 +107186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36353] = 21, + [36355] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -107239,7 +107240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36428] = 15, + [36430] = 15, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -107287,7 +107288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [36491] = 22, + [36493] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -107342,7 +107343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36568] = 6, + [36570] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(2415), 1, @@ -107351,12 +107352,16 @@ static const uint16_t ts_small_parse_table[] = { sym__const_declaration, STATE(2618), 1, sym_visibility_modifier, + ACTIONS(45), 3, + aux_sym_visibility_modifier_token1, + aux_sym_visibility_modifier_token2, + aux_sym_visibility_modifier_token3, ACTIONS(2417), 4, anon_sym_BSLASH, anon_sym_LPAREN, anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2413), 24, + ACTIONS(2413), 21, aux_sym_function_static_declaration_token1, aux_sym_namespace_definition_token1, aux_sym_namespace_use_declaration_token2, @@ -107366,9 +107371,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_abstract_modifier_token1, aux_sym_readonly_modifier_token1, sym_var_modifier, - aux_sym_visibility_modifier_token1, - aux_sym_visibility_modifier_token2, - aux_sym_visibility_modifier_token3, anon_sym_array, aux_sym_primitive_type_token1, anon_sym_iterable, @@ -107381,7 +107383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [36613] = 22, + [36617] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -107436,7 +107438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36690] = 21, + [36694] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -107490,7 +107492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36765] = 21, + [36769] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -107544,7 +107546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [36840] = 21, + [36844] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -107598,7 +107600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36915] = 21, + [36919] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -107652,7 +107654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [36990] = 21, + [36994] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -107706,7 +107708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_method_declaration, sym_use_declaration, aux_sym_declaration_list_repeat1, - [37065] = 22, + [37069] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -107761,7 +107763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37142] = 15, + [37146] = 15, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -107809,7 +107811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [37205] = 21, + [37209] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -107862,7 +107864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37279] = 21, + [37283] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -107915,7 +107917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37353] = 22, + [37357] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -107969,7 +107971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37429] = 21, + [37433] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108022,7 +108024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37503] = 21, + [37507] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -108075,7 +108077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37577] = 21, + [37581] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108128,7 +108130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37651] = 21, + [37655] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108181,7 +108183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37725] = 21, + [37729] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108234,7 +108236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37799] = 22, + [37803] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -108288,7 +108290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [37875] = 14, + [37879] = 14, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -108334,7 +108336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [37935] = 21, + [37939] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -108387,7 +108389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38009] = 21, + [38013] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -108440,7 +108442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38083] = 21, + [38087] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -108493,7 +108495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38157] = 21, + [38161] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108546,7 +108548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38231] = 14, + [38235] = 14, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -108592,7 +108594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [38291] = 22, + [38295] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -108646,7 +108648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38367] = 21, + [38371] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108699,7 +108701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38441] = 21, + [38445] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -108752,7 +108754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38515] = 21, + [38519] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -108805,7 +108807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38589] = 21, + [38593] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108858,7 +108860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38663] = 3, + [38667] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2531), 4, @@ -108893,7 +108895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [38701] = 21, + [38705] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -108946,7 +108948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38775] = 21, + [38779] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -108999,7 +109001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38849] = 21, + [38853] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109052,7 +109054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38923] = 21, + [38927] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109105,7 +109107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [38997] = 22, + [39001] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109159,7 +109161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39073] = 22, + [39077] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -109213,7 +109215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39149] = 21, + [39153] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -109266,7 +109268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39223] = 21, + [39227] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -109319,7 +109321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39297] = 21, + [39301] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -109372,7 +109374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39371] = 22, + [39375] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -109426,7 +109428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39447] = 21, + [39451] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109479,7 +109481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39521] = 21, + [39525] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109532,7 +109534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39595] = 21, + [39599] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109585,7 +109587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39669] = 21, + [39673] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109638,7 +109640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39743] = 22, + [39747] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109692,7 +109694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39819] = 21, + [39823] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109745,7 +109747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39893] = 21, + [39897] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2297), 1, @@ -109798,7 +109800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [39967] = 21, + [39971] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109851,7 +109853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40041] = 21, + [40045] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109904,7 +109906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40115] = 21, + [40119] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -109957,7 +109959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40189] = 21, + [40193] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2343), 1, @@ -110010,7 +110012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40263] = 22, + [40267] = 22, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110064,7 +110066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40339] = 21, + [40343] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110116,7 +110118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40412] = 21, + [40416] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110168,7 +110170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40485] = 21, + [40489] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110220,7 +110222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40558] = 21, + [40562] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110272,7 +110274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40631] = 21, + [40635] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -110324,7 +110326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40704] = 21, + [40708] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110376,7 +110378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40777] = 21, + [40781] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110428,7 +110430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40850] = 21, + [40854] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110480,7 +110482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40923] = 21, + [40927] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110532,7 +110534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [40996] = 21, + [41000] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110584,7 +110586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41069] = 21, + [41073] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110636,7 +110638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41142] = 21, + [41146] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110688,7 +110690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41215] = 21, + [41219] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110740,7 +110742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41288] = 21, + [41292] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -110792,7 +110794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41361] = 21, + [41365] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110844,7 +110846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41434] = 17, + [41438] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -110892,7 +110894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [41499] = 21, + [41503] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110944,7 +110946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41572] = 21, + [41576] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -110996,7 +110998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41645] = 21, + [41649] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -111048,7 +111050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41718] = 21, + [41722] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111100,7 +111102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41791] = 21, + [41795] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111152,7 +111154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41864] = 21, + [41868] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111204,7 +111206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [41937] = 21, + [41941] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111256,7 +111258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42010] = 21, + [42014] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111308,7 +111310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42083] = 21, + [42087] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111360,7 +111362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42156] = 21, + [42160] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111412,7 +111414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42229] = 21, + [42233] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111464,7 +111466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42302] = 21, + [42306] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111516,7 +111518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42375] = 21, + [42379] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111568,7 +111570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42448] = 21, + [42452] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -111620,7 +111622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42521] = 3, + [42525] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2643), 4, @@ -111654,7 +111656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [42558] = 4, + [42562] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2645), 1, @@ -111689,7 +111691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [42597] = 17, + [42601] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -111737,7 +111739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [42662] = 21, + [42666] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111789,7 +111791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42735] = 21, + [42739] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111841,7 +111843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42808] = 21, + [42812] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111893,7 +111895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42881] = 21, + [42885] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111945,7 +111947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [42954] = 21, + [42958] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -111997,7 +111999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43027] = 21, + [43031] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112049,7 +112051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43100] = 21, + [43104] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112101,7 +112103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43173] = 21, + [43177] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112153,7 +112155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43246] = 21, + [43250] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112205,7 +112207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43319] = 21, + [43323] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112257,7 +112259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43392] = 21, + [43396] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112309,7 +112311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43465] = 17, + [43469] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2671), 1, @@ -112357,7 +112359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [43530] = 21, + [43534] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112409,7 +112411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43603] = 21, + [43607] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112461,7 +112463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43676] = 21, + [43680] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112513,7 +112515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43749] = 21, + [43753] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112565,7 +112567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43822] = 21, + [43826] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112617,7 +112619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43895] = 21, + [43899] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112669,7 +112671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [43968] = 21, + [43972] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112721,7 +112723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44041] = 21, + [44045] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -112773,7 +112775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44114] = 21, + [44118] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112825,7 +112827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44187] = 21, + [44191] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112877,7 +112879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44260] = 21, + [44264] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -112929,7 +112931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44333] = 21, + [44337] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2231), 1, @@ -112981,7 +112983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44406] = 21, + [44410] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113033,7 +113035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44479] = 3, + [44483] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2727), 4, @@ -113067,7 +113069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [44516] = 17, + [44520] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -113115,7 +113117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [44581] = 21, + [44585] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113167,7 +113169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44654] = 21, + [44658] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113219,7 +113221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44727] = 21, + [44731] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113271,7 +113273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44800] = 21, + [44804] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113323,7 +113325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44873] = 21, + [44877] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113375,7 +113377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [44946] = 17, + [44950] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -113423,7 +113425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [45011] = 21, + [45015] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113475,7 +113477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45084] = 21, + [45088] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113527,7 +113529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45157] = 21, + [45161] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113579,7 +113581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45230] = 21, + [45234] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113631,7 +113633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45303] = 21, + [45307] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113683,7 +113685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45376] = 21, + [45380] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113735,7 +113737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45449] = 21, + [45453] = 21, ACTIONS(1522), 1, sym_comment, ACTIONS(2161), 1, @@ -113787,7 +113789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ_GT, - [45522] = 3, + [45526] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2757), 4, @@ -113820,7 +113822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45558] = 3, + [45562] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2761), 4, @@ -113853,7 +113855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45594] = 5, + [45598] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2767), 1, @@ -113887,7 +113889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45633] = 5, + [45637] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1709), 1, @@ -113921,7 +113923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45672] = 11, + [45676] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -113959,7 +113961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45721] = 11, + [45725] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -113997,7 +113999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45770] = 11, + [45774] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114035,7 +114037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45819] = 11, + [45823] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114073,7 +114075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45868] = 11, + [45872] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114111,7 +114113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45917] = 11, + [45921] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114149,7 +114151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [45966] = 3, + [45970] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2780), 7, @@ -114179,7 +114181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [45999] = 11, + [46003] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114217,7 +114219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46048] = 11, + [46052] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114255,7 +114257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46097] = 11, + [46101] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114293,7 +114295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46146] = 3, + [46150] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2784), 7, @@ -114323,7 +114325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [46179] = 3, + [46183] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2788), 7, @@ -114353,7 +114355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [46212] = 11, + [46216] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114391,7 +114393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46261] = 11, + [46265] = 11, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114429,7 +114431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46310] = 10, + [46314] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114465,7 +114467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46356] = 10, + [46360] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114501,7 +114503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46402] = 10, + [46406] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114537,7 +114539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46448] = 10, + [46452] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114573,7 +114575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46494] = 10, + [46498] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114609,7 +114611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46540] = 10, + [46544] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114645,7 +114647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46586] = 3, + [46590] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2727), 4, @@ -114671,7 +114673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [46615] = 9, + [46619] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114703,7 +114705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46656] = 9, + [46660] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114735,7 +114737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46697] = 9, + [46701] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -114767,7 +114769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, anon_sym_null, anon_sym_true, - [46738] = 3, + [46742] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2761), 4, @@ -114792,7 +114794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, anon_sym_true, sym_name, - [46766] = 14, + [46770] = 14, ACTIONS(1522), 1, sym_comment, ACTIONS(2385), 1, @@ -114827,7 +114829,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier, sym_static_modifier, aux_sym_property_declaration_repeat1, - [46815] = 12, + [46819] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2792), 1, @@ -114859,7 +114861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [46859] = 11, + [46863] = 11, ACTIONS(1522), 1, sym_comment, ACTIONS(2389), 1, @@ -114890,7 +114892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [46901] = 12, + [46905] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2816), 1, @@ -114922,7 +114924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [46945] = 11, + [46949] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2810), 1, @@ -114952,7 +114954,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [46986] = 10, + [46990] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2389), 1, @@ -114981,7 +114983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [47025] = 11, + [47029] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2837), 1, @@ -115011,7 +115013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47066] = 4, + [47070] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(107), 1, @@ -115034,7 +115036,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [47093] = 11, + [47097] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2816), 1, @@ -115064,7 +115066,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47134] = 10, + [47138] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2389), 1, @@ -115093,7 +115095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [47173] = 11, + [47177] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2816), 1, @@ -115123,7 +115125,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47214] = 4, + [47218] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2862), 1, @@ -115146,7 +115148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, - [47241] = 9, + [47245] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2278), 1, @@ -115173,7 +115175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_static_modifier, sym_visibility_modifier, aux_sym_property_declaration_repeat1, - [47277] = 3, + [47281] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2883), 6, @@ -115194,7 +115196,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - [47301] = 2, + [47305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2784), 15, @@ -115213,7 +115215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [47322] = 2, + [47326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2780), 15, @@ -115232,7 +115234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [47343] = 9, + [47347] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2820), 1, @@ -115258,7 +115260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body_heredoc, sym_dynamic_variable_name, - [47378] = 2, + [47382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2788), 15, @@ -115277,7 +115279,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token3, aux_sym__arrow_function_header_token1, anon_sym_POUND_LBRACK, - [47399] = 2, + [47403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2891), 14, @@ -115295,7 +115297,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47419] = 2, + [47423] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2893), 14, @@ -115313,7 +115315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47439] = 10, + [47443] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2895), 1, @@ -115339,7 +115341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47475] = 2, + [47479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(983), 14, @@ -115357,7 +115359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47495] = 2, + [47499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(994), 14, @@ -115375,7 +115377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47515] = 10, + [47519] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2912), 1, @@ -115401,7 +115403,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47551] = 2, + [47555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2924), 14, @@ -115419,7 +115421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47571] = 7, + [47575] = 7, ACTIONS(591), 1, anon_sym_LT_LT_LT, ACTIONS(1522), 1, @@ -115442,7 +115444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [47601] = 10, + [47605] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2912), 1, @@ -115468,7 +115470,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47637] = 2, + [47641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2934), 14, @@ -115486,7 +115488,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47657] = 2, + [47661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2936), 14, @@ -115504,7 +115506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47677] = 2, + [47681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2938), 14, @@ -115522,7 +115524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47697] = 2, + [47701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2936), 14, @@ -115540,7 +115542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47717] = 2, + [47721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2940), 14, @@ -115558,7 +115560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47737] = 2, + [47741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2940), 14, @@ -115576,7 +115578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47757] = 2, + [47761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2942), 14, @@ -115594,7 +115596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47777] = 10, + [47781] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2912), 1, @@ -115620,7 +115622,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47813] = 2, + [47817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2948), 14, @@ -115638,7 +115640,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47833] = 2, + [47837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2950), 14, @@ -115656,7 +115658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47853] = 2, + [47857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2938), 14, @@ -115674,7 +115676,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47873] = 10, + [47877] = 10, ACTIONS(1522), 1, sym_comment, ACTIONS(2912), 1, @@ -115700,7 +115702,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_string_body, sym_dynamic_variable_name, - [47909] = 2, + [47913] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2924), 14, @@ -115718,7 +115720,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47929] = 2, + [47933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2954), 14, @@ -115736,7 +115738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47949] = 2, + [47953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2956), 14, @@ -115754,7 +115756,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47969] = 2, + [47973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2958), 13, @@ -115771,7 +115773,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [47988] = 2, + [47992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2960), 13, @@ -115788,7 +115790,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48007] = 13, + [48011] = 13, ACTIONS(1522), 1, sym_comment, ACTIONS(2395), 1, @@ -115816,7 +115818,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1926), 2, sym_final_modifier, sym_abstract_modifier, - [48048] = 2, + [48052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2974), 13, @@ -115833,7 +115835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48067] = 9, + [48071] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2976), 1, @@ -115857,7 +115859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48100] = 2, + [48104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1482), 13, @@ -115874,7 +115876,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48119] = 2, + [48123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1438), 13, @@ -115891,7 +115893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48138] = 3, + [48142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1574), 4, @@ -115909,7 +115911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [48159] = 2, + [48163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2986), 13, @@ -115926,7 +115928,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48178] = 9, + [48182] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2976), 1, @@ -115950,7 +115952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48211] = 2, + [48215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1370), 13, @@ -115967,7 +115969,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48230] = 2, + [48234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2994), 13, @@ -115984,7 +115986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48249] = 2, + [48253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2996), 13, @@ -116001,7 +116003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48268] = 2, + [48272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2998), 13, @@ -116018,7 +116020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48287] = 2, + [48291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3000), 13, @@ -116035,7 +116037,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48306] = 2, + [48310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1414), 13, @@ -116052,7 +116054,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48325] = 5, + [48329] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -116072,7 +116074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [48350] = 2, + [48354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3006), 13, @@ -116089,7 +116091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48369] = 2, + [48373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3008), 13, @@ -116106,7 +116108,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48388] = 9, + [48392] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(3010), 1, @@ -116130,7 +116132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48421] = 2, + [48425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1150), 13, @@ -116147,7 +116149,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48440] = 10, + [48444] = 10, ACTIONS(553), 1, aux_sym_namespace_definition_token1, ACTIONS(1522), 1, @@ -116172,7 +116174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48475] = 2, + [48479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1138), 13, @@ -116189,7 +116191,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48494] = 2, + [48498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1374), 13, @@ -116206,7 +116208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48513] = 6, + [48517] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3034), 1, @@ -116227,7 +116229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [48540] = 2, + [48544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3042), 13, @@ -116244,7 +116246,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48559] = 2, + [48563] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3044), 13, @@ -116261,7 +116263,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48578] = 9, + [48582] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2976), 1, @@ -116285,7 +116287,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48611] = 2, + [48615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3052), 13, @@ -116302,7 +116304,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48630] = 10, + [48634] = 10, ACTIONS(553), 1, aux_sym_namespace_definition_token1, ACTIONS(1522), 1, @@ -116327,7 +116329,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48665] = 9, + [48669] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(2976), 1, @@ -116351,7 +116353,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_part, aux_sym__interpolated_execution_operator_body, sym_dynamic_variable_name, - [48698] = 2, + [48702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3060), 13, @@ -116368,7 +116370,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48717] = 2, + [48721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3062), 13, @@ -116385,7 +116387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48736] = 2, + [48740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3064), 13, @@ -116402,7 +116404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48755] = 2, + [48759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3066), 13, @@ -116419,7 +116421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, anon_sym_POUND_LBRACK, - [48774] = 13, + [48778] = 13, ACTIONS(1522), 1, sym_comment, ACTIONS(2395), 1, @@ -116447,7 +116449,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1924), 2, sym_final_modifier, sym_abstract_modifier, - [48815] = 8, + [48819] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(3076), 1, @@ -116469,7 +116471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [48845] = 10, + [48849] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116493,7 +116495,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48879] = 10, + [48883] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116517,7 +116519,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48913] = 10, + [48917] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116541,7 +116543,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48947] = 10, + [48951] = 10, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116565,7 +116567,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [48981] = 9, + [48985] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116587,7 +116589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49012] = 6, + [49016] = 6, ACTIONS(113), 1, anon_sym_LT_LT_LT, ACTIONS(1522), 1, @@ -116606,7 +116608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [49037] = 9, + [49041] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116628,7 +116630,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49068] = 9, + [49072] = 9, ACTIONS(553), 1, aux_sym_namespace_definition_token1, ACTIONS(1522), 1, @@ -116650,7 +116652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49099] = 8, + [49103] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -116671,7 +116673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49128] = 9, + [49132] = 9, ACTIONS(553), 1, aux_sym_namespace_definition_token1, ACTIONS(1522), 1, @@ -116693,7 +116695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49159] = 6, + [49163] = 6, ACTIONS(113), 1, anon_sym_LT_LT_LT, ACTIONS(1522), 1, @@ -116712,7 +116714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc, sym_nowdoc, sym__string, - [49184] = 9, + [49188] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116734,7 +116736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49215] = 3, + [49219] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3104), 4, @@ -116750,7 +116752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49234] = 8, + [49238] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -116771,7 +116773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49263] = 3, + [49267] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3108), 4, @@ -116787,7 +116789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49282] = 3, + [49286] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3002), 4, @@ -116803,7 +116805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49301] = 8, + [49305] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -116824,7 +116826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49330] = 9, + [49334] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116846,7 +116848,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49361] = 7, + [49365] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -116865,7 +116867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49387] = 5, + [49391] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -116882,7 +116884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49409] = 3, + [49413] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3122), 3, @@ -116897,7 +116899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49427] = 7, + [49431] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -116916,7 +116918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49453] = 7, + [49457] = 7, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -116935,7 +116937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49479] = 8, + [49483] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -116955,7 +116957,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49507] = 3, + [49511] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3132), 3, @@ -116970,7 +116972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49525] = 3, + [49529] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3134), 4, @@ -116985,7 +116987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49543] = 3, + [49547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3140), 3, @@ -117000,7 +117002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49561] = 6, + [49565] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3032), 1, @@ -117018,7 +117020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [49585] = 5, + [49589] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3150), 1, @@ -117035,7 +117037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [49607] = 3, + [49611] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3155), 4, @@ -117050,7 +117052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49625] = 5, + [49629] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1851), 1, @@ -117067,7 +117069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49647] = 5, + [49651] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -117084,7 +117086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [49669] = 3, + [49673] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3163), 3, @@ -117099,7 +117101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49687] = 3, + [49691] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3165), 4, @@ -117114,7 +117116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49705] = 5, + [49709] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3076), 1, @@ -117131,7 +117133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RPAREN, anon_sym_DOLLAR, - [49727] = 3, + [49731] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1586), 3, @@ -117146,7 +117148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49745] = 3, + [49749] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3148), 4, @@ -117161,7 +117163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [49763] = 8, + [49767] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -117181,7 +117183,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49791] = 3, + [49795] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1576), 1, @@ -117196,7 +117198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [49809] = 3, + [49813] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3175), 4, @@ -117211,7 +117213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [49827] = 3, + [49831] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2854), 3, @@ -117226,7 +117228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49845] = 3, + [49849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3183), 3, @@ -117241,7 +117243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49863] = 3, + [49867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1574), 3, @@ -117256,7 +117258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49881] = 8, + [49885] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -117276,7 +117278,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49909] = 8, + [49913] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -117296,7 +117298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49937] = 3, + [49941] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1614), 3, @@ -117311,7 +117313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_GT2, sym__new_line, anon_sym_DOLLAR, - [49955] = 8, + [49959] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -117331,7 +117333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [49983] = 7, + [49987] = 7, ACTIONS(1510), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117349,7 +117351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50008] = 6, + [50012] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -117366,7 +117368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50031] = 6, + [50035] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -117383,7 +117385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50054] = 6, + [50058] = 6, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117400,7 +117402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50077] = 7, + [50081] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -117418,7 +117420,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50102] = 7, + [50106] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117436,7 +117438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50127] = 8, + [50131] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -117455,7 +117457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50154] = 3, + [50158] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3215), 4, @@ -117469,7 +117471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [50171] = 2, + [50175] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2757), 9, @@ -117482,7 +117484,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [50186] = 5, + [50190] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -117498,7 +117500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50207] = 6, + [50211] = 6, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117515,7 +117517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50230] = 3, + [50234] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1576), 1, @@ -117529,7 +117531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [50247] = 7, + [50251] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117547,7 +117549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50272] = 5, + [50276] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -117563,7 +117565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50293] = 6, + [50297] = 6, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117580,7 +117582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50316] = 7, + [50320] = 7, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117598,7 +117600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50341] = 2, + [50345] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2761), 9, @@ -117611,7 +117613,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [50356] = 6, + [50360] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1686), 1, @@ -117628,7 +117630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50379] = 2, + [50383] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2727), 9, @@ -117641,7 +117643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [50394] = 8, + [50398] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -117660,7 +117662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50421] = 2, + [50425] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2531), 9, @@ -117673,7 +117675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [50436] = 2, + [50440] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2643), 9, @@ -117686,7 +117688,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [50451] = 5, + [50455] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3233), 1, @@ -117702,7 +117704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50472] = 6, + [50476] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117719,7 +117721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50495] = 6, + [50499] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117736,7 +117738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50518] = 7, + [50522] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -117754,7 +117756,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50543] = 6, + [50547] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3032), 1, @@ -117771,7 +117773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [50566] = 5, + [50570] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -117787,7 +117789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50587] = 6, + [50591] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117804,7 +117806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50610] = 6, + [50614] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117821,7 +117823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50633] = 5, + [50637] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -117837,7 +117839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50654] = 6, + [50658] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -117854,7 +117856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50677] = 7, + [50681] = 7, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117872,7 +117874,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50702] = 6, + [50706] = 6, ACTIONS(1516), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117889,7 +117891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50725] = 5, + [50729] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3274), 1, @@ -117905,7 +117907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50746] = 6, + [50750] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -117922,7 +117924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50769] = 6, + [50773] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -117939,7 +117941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50792] = 6, + [50796] = 6, ACTIONS(1516), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -117956,7 +117958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50815] = 5, + [50819] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3280), 1, @@ -117972,7 +117974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50836] = 6, + [50840] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -117989,7 +117991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50859] = 6, + [50863] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118006,7 +118008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [50882] = 5, + [50886] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3289), 1, @@ -118022,7 +118024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50903] = 5, + [50907] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3274), 1, @@ -118038,7 +118040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50924] = 6, + [50928] = 6, ACTIONS(1510), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118055,7 +118057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [50947] = 5, + [50951] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3274), 1, @@ -118071,7 +118073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [50968] = 7, + [50972] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -118089,7 +118091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [50993] = 5, + [50997] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118105,7 +118107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51014] = 5, + [51018] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118121,7 +118123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51035] = 5, + [51039] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118137,7 +118139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51056] = 7, + [51060] = 7, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118155,7 +118157,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51081] = 6, + [51085] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118172,7 +118174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51104] = 6, + [51108] = 6, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118189,7 +118191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51127] = 6, + [51131] = 6, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118206,7 +118208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51150] = 7, + [51154] = 7, ACTIONS(1516), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118224,7 +118226,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51175] = 7, + [51179] = 7, ACTIONS(1516), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118242,7 +118244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51200] = 6, + [51204] = 6, ACTIONS(1510), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118259,7 +118261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51223] = 6, + [51227] = 6, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118276,7 +118278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51246] = 7, + [51250] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118294,7 +118296,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51271] = 6, + [51275] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118311,7 +118313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51294] = 6, + [51298] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118328,7 +118330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51317] = 6, + [51321] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118345,7 +118347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51340] = 6, + [51344] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -118362,7 +118364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51363] = 6, + [51367] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -118379,7 +118381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_dynamic_variable_name, sym_variable_name, sym__reserved_identifier, - [51386] = 7, + [51390] = 7, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -118397,7 +118399,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51411] = 5, + [51415] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3116), 1, @@ -118412,7 +118414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51431] = 9, + [51435] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118431,7 +118433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2356), 1, sym_class_interface_clause, - [51459] = 9, + [51463] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118450,7 +118452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2337), 1, sym_class_interface_clause, - [51487] = 9, + [51491] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -118469,7 +118471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2636), 1, sym_namespace_name, - [51515] = 9, + [51519] = 9, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -118488,7 +118490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2636), 1, sym_namespace_name, - [51543] = 7, + [51547] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3359), 1, @@ -118505,7 +118507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [51567] = 5, + [51571] = 5, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -118520,7 +118522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51587] = 5, + [51591] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1851), 1, @@ -118535,7 +118537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51607] = 8, + [51611] = 8, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -118553,7 +118555,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51633] = 6, + [51637] = 6, ACTIONS(943), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -118569,7 +118571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [51655] = 9, + [51659] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118588,7 +118590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2398), 1, sym_class_interface_clause, - [51683] = 6, + [51687] = 6, ACTIONS(935), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -118604,7 +118606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [51705] = 5, + [51709] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3116), 1, @@ -118619,7 +118621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51725] = 9, + [51729] = 9, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118638,7 +118640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2183), 1, sym_class_interface_clause, - [51753] = 8, + [51757] = 8, ACTIONS(27), 1, anon_sym_BSLASH, ACTIONS(553), 1, @@ -118655,7 +118657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name_as_prefix, STATE(2636), 1, sym_namespace_name, - [51778] = 4, + [51782] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1899), 1, @@ -118668,7 +118670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51795] = 6, + [51799] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, @@ -118683,7 +118685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [51816] = 5, + [51820] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -118697,7 +118699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_subscript_unary_expression, sym__simple_string_array_access_argument, sym_variable_name, - [51835] = 7, + [51839] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3387), 1, @@ -118713,7 +118715,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [51858] = 4, + [51862] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1899), 1, @@ -118726,7 +118728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51875] = 3, + [51879] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3258), 2, @@ -118738,7 +118740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51890] = 4, + [51894] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1695), 1, @@ -118751,7 +118753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51907] = 3, + [51911] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3161), 1, @@ -118763,7 +118765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [51922] = 3, + [51926] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3394), 1, @@ -118775,7 +118777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [51937] = 5, + [51941] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3398), 1, @@ -118789,7 +118791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [51956] = 4, + [51960] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1695), 1, @@ -118802,7 +118804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51973] = 4, + [51977] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3112), 1, @@ -118815,7 +118817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [51990] = 4, + [51994] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1897), 1, @@ -118828,7 +118830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52007] = 4, + [52011] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1897), 1, @@ -118841,7 +118843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52024] = 4, + [52028] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1695), 1, @@ -118854,7 +118856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52041] = 4, + [52045] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -118867,7 +118869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52058] = 4, + [52062] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1897), 1, @@ -118880,7 +118882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52075] = 4, + [52079] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1686), 1, @@ -118893,7 +118895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52092] = 6, + [52096] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, @@ -118908,7 +118910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52113] = 3, + [52117] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1909), 3, @@ -118920,7 +118922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_self, anon_sym_parent, sym_name, - [52128] = 5, + [52132] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -118934,7 +118936,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_subscript_unary_expression, sym__simple_string_array_access_argument, sym_variable_name, - [52147] = 6, + [52151] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -118949,7 +118951,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [52168] = 5, + [52172] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -118963,7 +118965,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_string_subscript_unary_expression, sym__simple_string_array_access_argument, sym_variable_name, - [52187] = 3, + [52191] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3138), 1, @@ -118975,7 +118977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52202] = 4, + [52206] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1686), 1, @@ -118988,7 +118990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52219] = 3, + [52223] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3414), 1, @@ -119000,7 +119002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52234] = 3, + [52238] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3130), 1, @@ -119012,7 +119014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52249] = 3, + [52253] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1616), 1, @@ -119024,7 +119026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52264] = 3, + [52268] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3181), 1, @@ -119036,7 +119038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52279] = 4, + [52283] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -119049,7 +119051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [52296] = 3, + [52300] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3309), 2, @@ -119061,7 +119063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52311] = 3, + [52315] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3311), 2, @@ -119073,7 +119075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52326] = 3, + [52330] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1576), 1, @@ -119085,7 +119087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52341] = 4, + [52345] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1695), 1, @@ -119098,7 +119100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52358] = 4, + [52362] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -119111,7 +119113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52375] = 4, + [52379] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1899), 1, @@ -119124,7 +119126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52392] = 6, + [52396] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -119139,7 +119141,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52413] = 4, + [52417] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1897), 1, @@ -119152,7 +119154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52430] = 3, + [52434] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1588), 1, @@ -119164,7 +119166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_DQUOTE, anon_sym_DOLLAR, - [52445] = 4, + [52449] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1634), 1, @@ -119177,7 +119179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_QMARK_DASH_GT, anon_sym_LBRACK, - [52462] = 3, + [52466] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1576), 1, @@ -119188,7 +119190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [52476] = 7, + [52480] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119203,7 +119205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2276), 1, sym_class_interface_clause, - [52498] = 7, + [52502] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119218,7 +119220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2380), 1, sym__return_type, - [52520] = 6, + [52524] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -119232,7 +119234,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3428), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [52540] = 7, + [52544] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119247,7 +119249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2274), 1, sym__return_type, - [52562] = 7, + [52566] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119262,7 +119264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2422), 1, sym__return_type, - [52584] = 6, + [52588] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3365), 1, @@ -119276,7 +119278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52604] = 7, + [52608] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119291,7 +119293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2393), 1, sym_class_interface_clause, - [52626] = 5, + [52630] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119304,7 +119306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52644] = 5, + [52648] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119317,7 +119319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52662] = 5, + [52666] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119330,7 +119332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52680] = 7, + [52684] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119345,7 +119347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2199), 1, sym_class_interface_clause, - [52702] = 7, + [52706] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119360,7 +119362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2321), 1, sym_class_interface_clause, - [52724] = 7, + [52728] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119375,7 +119377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2298), 1, sym__return_type, - [52746] = 3, + [52750] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3432), 1, @@ -119386,7 +119388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [52760] = 7, + [52764] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119401,7 +119403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2316), 1, sym_class_interface_clause, - [52782] = 7, + [52786] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119416,7 +119418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2414), 1, sym_class_interface_clause, - [52804] = 6, + [52808] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -119430,7 +119432,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3434), 2, anon_sym_COMMA, anon_sym_RBRACK, - [52824] = 7, + [52828] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119445,7 +119447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2286), 1, sym__return_type, - [52846] = 5, + [52850] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119458,7 +119460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [52864] = 5, + [52868] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119471,7 +119473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52882] = 7, + [52886] = 7, ACTIONS(959), 1, aux_sym_while_statement_token1, ACTIONS(1522), 1, @@ -119486,7 +119488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2101), 1, sym_else_if_clause, - [52904] = 7, + [52908] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119501,7 +119503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2429), 1, sym_class_interface_clause, - [52926] = 5, + [52930] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119514,7 +119516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [52944] = 7, + [52948] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119529,7 +119531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2288), 1, sym__return_type, - [52966] = 5, + [52970] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119542,7 +119544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [52984] = 7, + [52988] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119557,7 +119559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2346), 1, sym__return_type, - [53006] = 7, + [53010] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119572,7 +119574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2435), 1, sym__return_type, - [53028] = 7, + [53032] = 7, ACTIONS(951), 1, aux_sym_while_statement_token1, ACTIONS(1522), 1, @@ -119587,7 +119589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2101), 1, sym_else_if_clause, - [53050] = 7, + [53054] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119602,7 +119604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2206), 1, sym__return_type, - [53072] = 7, + [53076] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3456), 1, @@ -119617,7 +119619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2449), 1, sym_else_clause_2, - [53094] = 5, + [53098] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119630,7 +119632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53112] = 7, + [53116] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3458), 1, @@ -119645,7 +119647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2528), 1, sym_else_clause_2, - [53134] = 3, + [53138] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3130), 1, @@ -119656,7 +119658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53148] = 7, + [53152] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3458), 1, @@ -119671,7 +119673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2468), 1, sym_else_clause_2, - [53170] = 7, + [53174] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119686,7 +119688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2392), 1, sym_class_interface_clause, - [53192] = 3, + [53196] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1588), 1, @@ -119697,7 +119699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53206] = 5, + [53210] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119710,7 +119712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53224] = 3, + [53228] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3138), 1, @@ -119721,7 +119723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53238] = 7, + [53242] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119736,7 +119738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2440), 1, sym__return_type, - [53260] = 6, + [53264] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3365), 1, @@ -119750,7 +119752,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3470), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53280] = 7, + [53284] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119765,7 +119767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2371), 1, sym_class_interface_clause, - [53302] = 7, + [53306] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119780,7 +119782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2444), 1, sym_class_interface_clause, - [53324] = 7, + [53328] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119795,7 +119797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2401), 1, sym_class_interface_clause, - [53346] = 7, + [53350] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119810,7 +119812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2378), 1, sym__return_type, - [53368] = 7, + [53372] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119825,7 +119827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2381), 1, sym__return_type, - [53390] = 7, + [53394] = 7, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -119840,7 +119842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2262), 1, sym__return_type, - [53412] = 7, + [53416] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119855,7 +119857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2386), 1, sym_class_interface_clause, - [53434] = 7, + [53438] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -119870,7 +119872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2322), 1, sym_class_interface_clause, - [53456] = 7, + [53460] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -119885,7 +119887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2251), 1, sym_class_interface_clause, - [53478] = 5, + [53482] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119898,7 +119900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53496] = 7, + [53500] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -119913,7 +119915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2284), 1, sym__return_type, - [53518] = 5, + [53522] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -119926,7 +119928,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53536] = 5, + [53540] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -119939,7 +119941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53554] = 3, + [53558] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1616), 1, @@ -119950,7 +119952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53568] = 7, + [53572] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3458), 1, @@ -119965,7 +119967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_if_clause_2, STATE(2512), 1, sym_else_clause_2, - [53590] = 4, + [53594] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -119977,7 +119979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [53606] = 3, + [53610] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3161), 1, @@ -119988,7 +119990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53620] = 7, + [53624] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -120003,7 +120005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2391), 1, sym__return_type, - [53642] = 7, + [53646] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -120018,7 +120020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2357), 1, sym_class_interface_clause, - [53664] = 7, + [53668] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -120033,7 +120035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_base_clause, STATE(2290), 1, sym_class_interface_clause, - [53686] = 3, + [53690] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3181), 1, @@ -120044,7 +120046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR, - [53700] = 7, + [53704] = 7, ACTIONS(1522), 1, sym_comment, ACTIONS(3420), 1, @@ -120059,7 +120061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_anonymous_function_use_clause, STATE(2389), 1, sym__return_type, - [53722] = 7, + [53726] = 7, ACTIONS(951), 1, aux_sym_while_statement_token1, ACTIONS(1522), 1, @@ -120074,7 +120076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2101), 1, sym_else_if_clause, - [53744] = 5, + [53748] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3430), 1, @@ -120087,7 +120089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [53762] = 5, + [53766] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -120100,7 +120102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53780] = 5, + [53784] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3436), 1, @@ -120113,7 +120115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_case_statement, sym_default_statement, aux_sym_switch_block_repeat1, - [53798] = 7, + [53802] = 7, ACTIONS(959), 1, aux_sym_while_statement_token1, ACTIONS(1522), 1, @@ -120128,7 +120130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_else_clause, STATE(2101), 1, sym_else_if_clause, - [53820] = 2, + [53824] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3106), 5, @@ -120137,7 +120139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [53831] = 4, + [53835] = 4, ACTIONS(1066), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120148,7 +120150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3488), 2, sym__automatic_semicolon, anon_sym_SEMI, - [53846] = 6, + [53850] = 6, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -120161,7 +120163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(1738), 1, sym_namespace_name, - [53865] = 5, + [53869] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3494), 1, @@ -120173,7 +120175,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1627), 2, sym_dynamic_variable_name, sym_variable_name, - [53882] = 4, + [53886] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3359), 1, @@ -120184,7 +120186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [53897] = 6, + [53901] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3500), 1, @@ -120197,7 +120199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3508), 1, anon_sym_LBRACK, - [53916] = 4, + [53920] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3512), 1, @@ -120208,7 +120210,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [53931] = 6, + [53935] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120221,7 +120223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3521), 1, anon_sym_LBRACK, - [53950] = 5, + [53954] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -120233,7 +120235,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2187), 2, sym_variable_name, sym_variable_reference, - [53967] = 4, + [53971] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3527), 1, @@ -120244,7 +120246,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_visibility_modifier_token1, aux_sym_visibility_modifier_token2, aux_sym_visibility_modifier_token3, - [53982] = 6, + [53986] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -120257,7 +120259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2432), 1, sym_class_interface_clause, - [54001] = 6, + [54005] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120270,7 +120272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(3537), 1, anon_sym_QMARK_DASH_GT, - [54020] = 4, + [54024] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3539), 1, @@ -120281,7 +120283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [54035] = 5, + [54039] = 5, ACTIONS(1510), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -120293,7 +120295,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(680), 2, sym_dynamic_variable_name, sym_variable_name, - [54052] = 4, + [54056] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3548), 1, @@ -120304,7 +120306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [54067] = 4, + [54071] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3552), 1, @@ -120315,7 +120317,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54082] = 6, + [54086] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -120328,7 +120330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(1968), 1, sym_variable_name, - [54101] = 4, + [54105] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3556), 1, @@ -120339,7 +120341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54116] = 6, + [54120] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120352,7 +120354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(3560), 1, anon_sym_QMARK_DASH_GT, - [54135] = 5, + [54139] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3562), 1, @@ -120364,7 +120366,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1589), 2, sym_dynamic_variable_name, sym_variable_name, - [54152] = 4, + [54156] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3548), 1, @@ -120375,7 +120377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [54167] = 4, + [54171] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3570), 1, @@ -120386,7 +120388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54182] = 4, + [54186] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3573), 1, @@ -120397,7 +120399,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54197] = 4, + [54201] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3576), 1, @@ -120408,7 +120410,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54212] = 4, + [54216] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3579), 1, @@ -120419,7 +120421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54227] = 4, + [54231] = 4, ACTIONS(1048), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120430,7 +120432,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3582), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54242] = 4, + [54246] = 4, ACTIONS(1054), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120441,7 +120443,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3584), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54257] = 4, + [54261] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3586), 1, @@ -120452,7 +120454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_function_static_declaration_token1, anon_sym_self, anon_sym_parent, - [54272] = 3, + [54276] = 3, ACTIONS(977), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120462,7 +120464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54285] = 4, + [54289] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3588), 1, @@ -120473,7 +120475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54300] = 5, + [54304] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1739), 1, @@ -120485,7 +120487,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(886), 2, sym_dynamic_variable_name, sym_variable_name, - [54317] = 5, + [54321] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3594), 1, @@ -120497,7 +120499,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1460), 2, sym_dynamic_variable_name, sym_variable_name, - [54334] = 4, + [54338] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3377), 1, @@ -120508,7 +120510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [54349] = 5, + [54353] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3596), 1, @@ -120520,7 +120522,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1460), 2, sym_dynamic_variable_name, sym_variable_name, - [54366] = 6, + [54370] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -120533,7 +120535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2387), 1, sym_class_interface_clause, - [54385] = 5, + [54389] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -120545,7 +120547,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2187), 2, sym_variable_name, sym_variable_reference, - [54402] = 3, + [54406] = 3, ACTIONS(1000), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120555,7 +120557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54415] = 4, + [54419] = 4, ACTIONS(1090), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120566,7 +120568,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3608), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54430] = 6, + [54434] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -120579,7 +120581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2254), 1, sym_class_interface_clause, - [54449] = 4, + [54453] = 4, ACTIONS(1072), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120590,7 +120592,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3612), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54464] = 4, + [54468] = 4, ACTIONS(1078), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120601,7 +120603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3614), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54479] = 4, + [54483] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3616), 1, @@ -120612,7 +120614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54494] = 4, + [54498] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3556), 1, @@ -120623,7 +120625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54509] = 5, + [54513] = 5, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -120635,7 +120637,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(613), 2, sym_dynamic_variable_name, sym_variable_name, - [54526] = 5, + [54530] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -120647,7 +120649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3622), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54543] = 6, + [54547] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120660,7 +120662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3632), 1, anon_sym_LBRACK, - [54562] = 4, + [54566] = 4, ACTIONS(1118), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120671,7 +120673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3634), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54577] = 4, + [54581] = 4, ACTIONS(1084), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120682,7 +120684,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3636), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54592] = 4, + [54596] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3616), 1, @@ -120693,7 +120695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54607] = 4, + [54611] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3638), 1, @@ -120704,7 +120706,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54622] = 5, + [54626] = 5, ACTIONS(595), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -120716,7 +120718,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(586), 2, sym_dynamic_variable_name, sym_variable_name, - [54639] = 4, + [54643] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3646), 1, @@ -120727,7 +120729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [54654] = 4, + [54658] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3648), 1, @@ -120738,7 +120740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [54669] = 5, + [54673] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1731), 1, @@ -120750,7 +120752,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(731), 2, sym_dynamic_variable_name, sym_variable_name, - [54686] = 4, + [54690] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3556), 1, @@ -120761,7 +120763,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54701] = 6, + [54705] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120774,7 +120776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3661), 1, anon_sym_LBRACK, - [54720] = 2, + [54724] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3110), 5, @@ -120783,7 +120785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [54731] = 4, + [54735] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3552), 1, @@ -120794,7 +120796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [54746] = 6, + [54750] = 6, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -120807,7 +120809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_namespace_name, STATE(2146), 1, sym_compound_statement, - [54765] = 6, + [54769] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3500), 1, @@ -120820,7 +120822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(3667), 1, anon_sym_QMARK_DASH_GT, - [54784] = 3, + [54788] = 3, ACTIONS(981), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120830,7 +120832,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_finally_clause_token1, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [54797] = 4, + [54801] = 4, ACTIONS(1096), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120841,7 +120843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3669), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54812] = 6, + [54816] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120854,7 +120856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(3673), 1, anon_sym_QMARK_DASH_GT, - [54831] = 4, + [54835] = 4, ACTIONS(1028), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120865,7 +120867,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3675), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54846] = 6, + [54850] = 6, ACTIONS(987), 1, aux_sym_while_statement_token1, ACTIONS(989), 1, @@ -120878,7 +120880,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_repeat1, STATE(2101), 1, sym_else_if_clause, - [54865] = 6, + [54869] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -120891,7 +120893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_modifier, STATE(2026), 1, sym_variable_name, - [54884] = 4, + [54888] = 4, ACTIONS(1060), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120902,7 +120904,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3682), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54899] = 4, + [54903] = 4, ACTIONS(1004), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -120913,7 +120915,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3684), 2, sym__automatic_semicolon, anon_sym_SEMI, - [54914] = 5, + [54918] = 5, ACTIONS(1516), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -120925,7 +120927,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(794), 2, sym_dynamic_variable_name, sym_variable_name, - [54931] = 6, + [54935] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120938,7 +120940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3696), 1, anon_sym_LBRACK, - [54950] = 4, + [54954] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -120949,7 +120951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [54965] = 6, + [54969] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, @@ -120962,7 +120964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_base_clause_repeat1, STATE(2260), 1, aux_sym_namespace_name_repeat1, - [54984] = 6, + [54988] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -120975,7 +120977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DASH_GT, ACTIONS(3706), 1, anon_sym_LBRACK, - [55003] = 5, + [55007] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3496), 1, @@ -120987,7 +120989,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1627), 2, sym_dynamic_variable_name, sym_variable_name, - [55020] = 6, + [55024] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3502), 1, @@ -121000,7 +121002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, ACTIONS(3712), 1, anon_sym_QMARK_DASH_GT, - [55039] = 4, + [55043] = 4, ACTIONS(1040), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121011,7 +121013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3714), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55054] = 4, + [55058] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3716), 1, @@ -121022,7 +121024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_clause, sym_finally_clause, aux_sym_try_statement_repeat1, - [55069] = 4, + [55073] = 4, ACTIONS(1112), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121033,7 +121035,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3720), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55084] = 4, + [55088] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3722), 1, @@ -121044,7 +121046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [55099] = 5, + [55103] = 5, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -121056,7 +121058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3725), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55116] = 4, + [55120] = 4, ACTIONS(1010), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121067,7 +121069,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3727), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55131] = 4, + [55135] = 4, ACTIONS(1034), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121078,7 +121080,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3729), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55146] = 4, + [55150] = 4, ACTIONS(1016), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121089,7 +121091,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3731), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55161] = 4, + [55165] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3408), 1, @@ -121100,7 +121102,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [55176] = 4, + [55180] = 4, ACTIONS(1106), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -121111,7 +121113,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3733), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55191] = 4, + [55195] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3616), 1, @@ -121122,7 +121124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [55206] = 6, + [55210] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3735), 1, @@ -121135,7 +121137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_if_statement_repeat2, STATE(1980), 1, sym_else_if_clause_2, - [55225] = 2, + [55229] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3004), 5, @@ -121144,7 +121146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACE, anon_sym_PIPE, - [55236] = 4, + [55240] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3742), 1, @@ -121155,7 +121157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [55251] = 5, + [55255] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3564), 1, @@ -121167,7 +121169,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1589), 2, sym_dynamic_variable_name, sym_variable_name, - [55268] = 5, + [55272] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3747), 1, @@ -121179,7 +121181,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3749), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [55285] = 4, + [55289] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3751), 1, @@ -121190,7 +121192,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [55300] = 6, + [55304] = 6, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121203,7 +121205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2319), 1, sym_class_interface_clause, - [55319] = 5, + [55323] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3747), 1, @@ -121215,7 +121217,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3749), 2, aux_sym_namespace_use_declaration_token2, aux_sym_namespace_use_declaration_token3, - [55336] = 4, + [55340] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3426), 1, @@ -121225,7 +121227,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3428), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [55350] = 4, + [55354] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3758), 1, @@ -121235,7 +121237,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3756), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [55364] = 4, + [55368] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -121245,7 +121247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3760), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55378] = 5, + [55382] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -121256,7 +121258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2304), 1, sym_base_clause, - [55394] = 4, + [55398] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121266,7 +121268,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3766), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55408] = 4, + [55412] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3772), 1, @@ -121276,7 +121278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3770), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55422] = 5, + [55426] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -121287,7 +121289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2433), 1, sym_reference_modifier, - [55438] = 2, + [55442] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3478), 4, @@ -121295,7 +121297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, - [55448] = 2, + [55452] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3167), 4, @@ -121303,7 +121305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [55458] = 5, + [55462] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -121314,7 +121316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2224), 1, sym_class_interface_clause, - [55474] = 2, + [55478] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3775), 4, @@ -121322,7 +121324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [55484] = 4, + [55488] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3779), 1, @@ -121332,7 +121334,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3777), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55498] = 4, + [55502] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3784), 1, @@ -121342,7 +121344,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3782), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55512] = 4, + [55516] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3788), 1, @@ -121352,7 +121354,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3786), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55526] = 5, + [55530] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -121363,7 +121365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2330), 1, sym_reference_modifier, - [55542] = 5, + [55546] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -121374,7 +121376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2323), 1, sym_reference_modifier, - [55558] = 5, + [55562] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -121385,7 +121387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2379), 1, sym__return_type, - [55574] = 5, + [55578] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121396,7 +121398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2434), 1, sym_class_interface_clause, - [55590] = 4, + [55594] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -121406,7 +121408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3791), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55604] = 4, + [55608] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -121416,7 +121418,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3793), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55618] = 3, + [55622] = 3, ACTIONS(1522), 1, sym_comment, STATE(2461), 1, @@ -121425,7 +121427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [55630] = 4, + [55634] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3801), 1, @@ -121435,7 +121437,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3799), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [55644] = 5, + [55648] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(2972), 1, @@ -121446,7 +121448,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2557), 1, sym_static_modifier, - [55660] = 2, + [55664] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3775), 4, @@ -121454,7 +121456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [55670] = 4, + [55674] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3810), 1, @@ -121464,7 +121466,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3808), 2, anon_sym_COMMA, anon_sym_RBRACE, - [55684] = 5, + [55688] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -121475,7 +121477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2414), 1, sym_class_interface_clause, - [55700] = 3, + [55704] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3814), 1, @@ -121484,7 +121486,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [55712] = 4, + [55716] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3818), 1, @@ -121494,7 +121496,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3816), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55726] = 5, + [55730] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -121505,7 +121507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2277), 1, sym_reference_modifier, - [55742] = 3, + [55746] = 3, ACTIONS(1522), 1, sym_comment, STATE(2514), 1, @@ -121514,7 +121516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [55754] = 2, + [55758] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3820), 4, @@ -121522,7 +121524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [55764] = 5, + [55768] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -121533,7 +121535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2283), 1, sym__return_type, - [55780] = 4, + [55784] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3822), 1, @@ -121543,7 +121545,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3478), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [55794] = 5, + [55798] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3825), 1, @@ -121554,7 +121556,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(1382), 1, sym_compound_statement, - [55810] = 5, + [55814] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121565,7 +121567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2347), 1, sym_class_interface_clause, - [55826] = 4, + [55830] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121575,7 +121577,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3831), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55840] = 4, + [55844] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3426), 1, @@ -121585,7 +121587,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3833), 2, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [55854] = 4, + [55858] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3837), 1, @@ -121595,7 +121597,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3835), 2, sym_heredoc_end, sym__new_line, - [55868] = 5, + [55872] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -121606,7 +121608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2281), 1, sym_reference_modifier, - [55884] = 4, + [55888] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3842), 1, @@ -121616,7 +121618,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3840), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55898] = 5, + [55902] = 5, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -121627,7 +121629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1991), 1, aux_sym__list_destructing_repeat1, - [55914] = 4, + [55918] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121637,7 +121639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3849), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55928] = 2, + [55932] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3851), 4, @@ -121645,7 +121647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [55938] = 5, + [55942] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3827), 1, @@ -121656,7 +121658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(1364), 1, sym_compound_statement, - [55954] = 4, + [55958] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121666,7 +121668,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3857), 2, sym__automatic_semicolon, anon_sym_SEMI, - [55968] = 5, + [55972] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -121677,7 +121679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2311), 1, sym_class_interface_clause, - [55984] = 5, + [55988] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -121688,7 +121690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2312), 1, sym__return_type, - [56000] = 5, + [56004] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -121699,7 +121701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2293), 1, sym__return_type, - [56016] = 5, + [56020] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121710,7 +121712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2201), 1, sym_class_interface_clause, - [56032] = 2, + [56036] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3136), 4, @@ -121718,7 +121720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [56042] = 2, + [56046] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3157), 4, @@ -121726,7 +121728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [56052] = 4, + [56056] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -121736,7 +121738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3859), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56066] = 4, + [56070] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -121746,7 +121748,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2028), 2, sym_variable_name, sym_variable_reference, - [56080] = 4, + [56084] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121756,7 +121758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3861), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56094] = 2, + [56098] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3863), 4, @@ -121764,7 +121766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [56104] = 4, + [56108] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121774,7 +121776,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3865), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56118] = 4, + [56122] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121784,7 +121786,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3867), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56132] = 5, + [56136] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -121795,7 +121797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2326), 1, sym_class_interface_clause, - [56148] = 5, + [56152] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121806,7 +121808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2292), 1, sym_class_interface_clause, - [56164] = 4, + [56168] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, @@ -121816,7 +121818,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3434), 2, anon_sym_COMMA, anon_sym_RBRACK, - [56178] = 5, + [56182] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -121827,7 +121829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2202), 1, sym_class_interface_clause, - [56194] = 4, + [56198] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121837,7 +121839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3869), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56208] = 4, + [56212] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121847,7 +121849,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3871), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56222] = 5, + [56226] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -121858,7 +121860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2394), 1, sym_class_interface_clause, - [56238] = 4, + [56242] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -121868,7 +121870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3873), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56252] = 5, + [56256] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -121879,7 +121881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2204), 1, sym__return_type, - [56268] = 4, + [56272] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3877), 1, @@ -121889,7 +121891,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3875), 2, sym_heredoc_end, sym__new_line, - [56282] = 2, + [56286] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3879), 4, @@ -121897,7 +121899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [56292] = 4, + [56296] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -121907,7 +121909,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3881), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56306] = 5, + [56310] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3827), 1, @@ -121918,7 +121920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(1373), 1, sym_compound_statement, - [56322] = 5, + [56326] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -121929,7 +121931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2205), 1, sym__return_type, - [56338] = 4, + [56342] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3818), 1, @@ -121939,7 +121941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3887), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56352] = 4, + [56356] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3784), 1, @@ -121949,7 +121951,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3889), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56366] = 5, + [56370] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -121960,7 +121962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2341), 1, sym__return_type, - [56382] = 4, + [56386] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -121970,7 +121972,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3891), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56396] = 5, + [56400] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -121981,7 +121983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2344), 1, sym__return_type, - [56412] = 4, + [56416] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3893), 1, @@ -121991,7 +121993,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3171), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [56426] = 4, + [56430] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -122001,7 +122003,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3896), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56440] = 4, + [56444] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122011,7 +122013,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3898), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56454] = 4, + [56458] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3900), 1, @@ -122021,7 +122023,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3153), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOLLAR, - [56468] = 5, + [56472] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122032,7 +122034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2401), 1, sym_class_interface_clause, - [56484] = 5, + [56488] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3355), 1, @@ -122043,7 +122045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2259), 1, sym_base_clause, - [56500] = 4, + [56504] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122053,7 +122055,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3903), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56514] = 5, + [56518] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122064,7 +122066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2382), 1, sym_reference_modifier, - [56530] = 5, + [56534] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122075,7 +122077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2249), 1, sym_reference_modifier, - [56546] = 5, + [56550] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -122086,7 +122088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2351), 1, sym_class_interface_clause, - [56562] = 5, + [56566] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122097,7 +122099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2403), 1, sym_class_interface_clause, - [56578] = 5, + [56582] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122108,7 +122110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2358), 1, sym_class_interface_clause, - [56594] = 5, + [56598] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -122119,7 +122121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2317), 1, sym_class_interface_clause, - [56610] = 5, + [56614] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3827), 1, @@ -122130,7 +122132,7 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, STATE(1381), 1, sym_compound_statement, - [56626] = 5, + [56630] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -122141,7 +122143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2437), 1, sym__return_type, - [56642] = 2, + [56646] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3851), 4, @@ -122149,7 +122151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [56652] = 5, + [56656] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -122160,7 +122162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2316), 1, sym_class_interface_clause, - [56668] = 4, + [56672] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122170,7 +122172,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3909), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56682] = 3, + [56686] = 3, ACTIONS(1522), 1, sym_comment, STATE(2544), 1, @@ -122179,7 +122181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [56694] = 3, + [56698] = 3, ACTIONS(1522), 1, sym_comment, STATE(2582), 1, @@ -122188,7 +122190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ticks, anon_sym_encoding, anon_sym_strict_types, - [56706] = 4, + [56710] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122198,7 +122200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3873), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56720] = 5, + [56724] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(2962), 1, @@ -122209,7 +122211,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_namespace_use_declaration_token2, STATE(2557), 1, sym_static_modifier, - [56736] = 5, + [56740] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122220,7 +122222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2273), 1, sym_reference_modifier, - [56752] = 5, + [56756] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122231,7 +122233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2354), 1, sym_reference_modifier, - [56768] = 4, + [56772] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122241,7 +122243,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3913), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56782] = 5, + [56786] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -122252,7 +122254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2369), 1, sym__return_type, - [56798] = 5, + [56802] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -122263,7 +122265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2372), 1, sym_class_interface_clause, - [56814] = 5, + [56818] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -122274,7 +122276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2375), 1, sym__return_type, - [56830] = 4, + [56834] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122284,7 +122286,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3915), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56844] = 2, + [56848] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3178), 4, @@ -122292,7 +122294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PIPE, - [56854] = 5, + [56858] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122303,7 +122305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_declaration_list, STATE(2409), 1, sym_class_interface_clause, - [56870] = 2, + [56874] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3917), 4, @@ -122311,7 +122313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_RPAREN, anon_sym_RBRACK, - [56880] = 5, + [56884] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122322,7 +122324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2207), 1, sym_class_interface_clause, - [56896] = 2, + [56900] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3153), 4, @@ -122330,7 +122332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP, anon_sym_LBRACE, - [56906] = 4, + [56910] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122340,7 +122342,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3919), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56920] = 4, + [56924] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -122350,7 +122352,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3921), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56934] = 5, + [56938] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -122361,7 +122363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2412), 1, sym__return_type, - [56950] = 5, + [56954] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -122372,7 +122374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2186), 1, sym__return_type, - [56966] = 4, + [56970] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -122382,7 +122384,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3923), 2, sym__automatic_semicolon, anon_sym_SEMI, - [56980] = 2, + [56984] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3510), 4, @@ -122390,7 +122392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, aux_sym_namespace_aliasing_clause_token1, anon_sym_RBRACE, - [56990] = 4, + [56994] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122400,7 +122402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57004] = 5, + [57008] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122411,7 +122413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2390), 1, sym_reference_modifier, - [57020] = 4, + [57024] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122421,7 +122423,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3927), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57034] = 2, + [57038] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3820), 4, @@ -122429,7 +122431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, - [57044] = 5, + [57048] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122440,7 +122442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2383), 1, sym_reference_modifier, - [57060] = 4, + [57064] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3818), 1, @@ -122450,7 +122452,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3929), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57074] = 4, + [57078] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3784), 1, @@ -122460,7 +122462,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3931), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57088] = 4, + [57092] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -122470,7 +122472,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3933), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57102] = 4, + [57106] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -122480,7 +122482,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3935), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57116] = 4, + [57120] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -122490,7 +122492,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3933), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57130] = 5, + [57134] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -122501,7 +122503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2329), 1, sym__return_type, - [57146] = 4, + [57150] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122511,7 +122513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3937), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57160] = 2, + [57164] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(1664), 4, @@ -122519,7 +122521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PIPE, anon_sym_DOLLAR, - [57170] = 4, + [57174] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122529,7 +122531,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3857), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57184] = 4, + [57188] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3758), 1, @@ -122539,7 +122541,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3939), 2, anon_sym_RPAREN, anon_sym_DOLLAR, - [57198] = 5, + [57202] = 5, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, @@ -122550,7 +122552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2295), 1, sym__return_type, - [57214] = 5, + [57218] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122561,7 +122563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2179), 1, sym_class_interface_clause, - [57230] = 4, + [57234] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122571,7 +122573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3941), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57244] = 4, + [57248] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122581,7 +122583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3943), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57258] = 5, + [57262] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(1697), 1, @@ -122592,7 +122594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_parameters, STATE(2313), 1, sym_reference_modifier, - [57274] = 2, + [57278] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3863), 4, @@ -122600,7 +122602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [57284] = 4, + [57288] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3810), 1, @@ -122610,7 +122612,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3945), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57298] = 4, + [57302] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3818), 1, @@ -122620,7 +122622,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3947), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57312] = 5, + [57316] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, @@ -122631,7 +122633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2299), 1, sym_class_interface_clause, - [57328] = 5, + [57332] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, @@ -122642,7 +122644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_compound_statement, STATE(2272), 1, sym__return_type, - [57344] = 4, + [57348] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -122652,7 +122654,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2187), 2, sym_variable_name, sym_variable_reference, - [57358] = 4, + [57362] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3768), 1, @@ -122662,7 +122664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3943), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57372] = 4, + [57376] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -122672,7 +122674,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3949), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57386] = 4, + [57390] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3784), 1, @@ -122682,7 +122684,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3951), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57400] = 4, + [57404] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3762), 1, @@ -122692,7 +122694,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3949), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57414] = 2, + [57418] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3510), 4, @@ -122700,7 +122702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH, anon_sym_LBRACE, - [57424] = 5, + [57428] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122711,7 +122713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2280), 1, sym_class_interface_clause, - [57440] = 5, + [57444] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122722,7 +122724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2357), 1, sym_class_interface_clause, - [57456] = 4, + [57460] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -122732,7 +122734,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57470] = 4, + [57474] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3957), 1, @@ -122742,7 +122744,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3955), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57484] = 4, + [57488] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3795), 1, @@ -122752,7 +122754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3960), 2, sym__automatic_semicolon, anon_sym_SEMI, - [57498] = 5, + [57502] = 5, ACTIONS(1522), 1, sym_comment, ACTIONS(3357), 1, @@ -122763,7 +122765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declaration_list, STATE(2227), 1, sym_class_interface_clause, - [57514] = 4, + [57518] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3962), 1, @@ -122772,7 +122774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1906), 1, aux_sym_array_creation_expression_repeat1, - [57527] = 4, + [57531] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3967), 1, @@ -122781,7 +122783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1907), 1, aux_sym_namespace_use_group_repeat1, - [57540] = 3, + [57544] = 3, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -122789,7 +122791,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1765), 2, sym_dynamic_variable_name, sym_variable_name, - [57551] = 4, + [57555] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3090), 1, @@ -122798,7 +122800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1998), 1, aux_sym_attribute_group_repeat1, - [57564] = 4, + [57568] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3974), 1, @@ -122807,7 +122809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(3978), 1, sym_heredoc_start, - [57577] = 4, + [57581] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2970), 1, @@ -122816,7 +122818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2568), 1, sym_readonly_modifier, - [57590] = 4, + [57594] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3492), 1, @@ -122825,7 +122827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2615), 1, sym_namespace_name, - [57603] = 4, + [57607] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -122834,7 +122836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2520), 1, sym__return_type, - [57616] = 4, + [57620] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3986), 1, @@ -122843,7 +122845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(537), 1, sym_switch_block, - [57629] = 4, + [57633] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3990), 1, @@ -122852,7 +122854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1966), 1, aux_sym_arguments_repeat1, - [57642] = 3, + [57646] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3845), 1, @@ -122860,7 +122862,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3994), 2, anon_sym_COMMA, anon_sym_RBRACK, - [57653] = 4, + [57657] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3996), 1, @@ -122869,7 +122871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1942), 1, aux_sym_array_creation_expression_repeat1, - [57666] = 4, + [57670] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3965), 1, @@ -122878,7 +122880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1918), 1, aux_sym_array_creation_expression_repeat1, - [57679] = 4, + [57683] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4003), 1, @@ -122887,7 +122889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1947), 1, aux_sym__array_destructing_repeat1, - [57692] = 4, + [57696] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4007), 1, @@ -122896,7 +122898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1948), 1, aux_sym_array_creation_expression_repeat1, - [57705] = 4, + [57709] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4003), 1, @@ -122905,7 +122907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1949), 1, aux_sym__array_destructing_repeat1, - [57718] = 4, + [57722] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4011), 1, @@ -122914,7 +122916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1951), 1, aux_sym_attribute_group_repeat1, - [57731] = 4, + [57735] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4015), 1, @@ -122923,7 +122925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2350), 1, sym_heredoc_body, - [57744] = 4, + [57748] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2970), 1, @@ -122932,7 +122934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2586), 1, sym_readonly_modifier, - [57757] = 4, + [57761] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2970), 1, @@ -122941,7 +122943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2574), 1, sym_readonly_modifier, - [57770] = 4, + [57774] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2970), 1, @@ -122950,7 +122952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token1, STATE(2482), 1, sym_readonly_modifier, - [57783] = 4, + [57787] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -122959,7 +122961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1955), 1, sym_static_variable_declaration, - [57796] = 4, + [57800] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4025), 1, @@ -122968,7 +122970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1932), 1, aux_sym_formal_parameters_repeat1, - [57809] = 3, + [57813] = 3, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -122976,14 +122978,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(1956), 2, sym_dynamic_variable_name, sym_variable_name, - [57820] = 2, + [57824] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4029), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [57829] = 4, + [57833] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4031), 1, @@ -122992,7 +122994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2410), 1, sym_namespace_use_group, - [57842] = 4, + [57846] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1747), 1, @@ -123001,7 +123003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2018), 1, aux_sym_formal_parameters_repeat1, - [57855] = 4, + [57859] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123010,7 +123012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, STATE(1961), 1, sym_variable_name, - [57868] = 4, + [57872] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4039), 1, @@ -123019,7 +123021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1965), 1, aux_sym_formal_parameters_repeat1, - [57881] = 3, + [57885] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4045), 1, @@ -123027,7 +123029,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4043), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57892] = 4, + [57896] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123036,7 +123038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2459), 1, sym__return_type, - [57905] = 4, + [57909] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4015), 1, @@ -123045,7 +123047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2216), 1, sym_heredoc_body, - [57918] = 4, + [57922] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3076), 1, @@ -123054,7 +123056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1459), 1, aux_sym_intersection_type_repeat1, - [57931] = 4, + [57935] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4051), 1, @@ -123063,7 +123065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1909), 1, aux_sym_attribute_group_repeat1, - [57944] = 4, + [57948] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123072,7 +123074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2465), 1, sym__return_type, - [57957] = 4, + [57961] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4057), 1, @@ -123081,7 +123083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(2051), 1, aux_sym_array_creation_expression_repeat1, - [57970] = 4, + [57974] = 4, ACTIONS(793), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -123090,7 +123092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1918), 1, aux_sym_array_creation_expression_repeat1, - [57983] = 4, + [57987] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4063), 1, @@ -123099,7 +123101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1976), 1, aux_sym_array_creation_expression_repeat1, - [57996] = 4, + [58000] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4067), 1, @@ -123108,7 +123110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(2120), 1, sym_switch_block, - [58009] = 4, + [58013] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123117,7 +123119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1988), 1, aux_sym__list_destructing_repeat1, - [58022] = 4, + [58026] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123126,7 +123128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [58035] = 4, + [58039] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4003), 1, @@ -123135,7 +123137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1949), 1, aux_sym__array_destructing_repeat1, - [58048] = 4, + [58052] = 4, ACTIONS(773), 1, anon_sym_RBRACK, ACTIONS(1522), 1, @@ -123144,7 +123146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1906), 1, aux_sym_array_creation_expression_repeat1, - [58061] = 4, + [58065] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4075), 1, @@ -123153,7 +123155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1949), 1, aux_sym__array_destructing_repeat1, - [58074] = 4, + [58078] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4080), 1, @@ -123162,7 +123164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1996), 1, aux_sym_match_block_repeat1, - [58087] = 4, + [58091] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3088), 1, @@ -123171,7 +123173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1998), 1, aux_sym_attribute_group_repeat1, - [58100] = 4, + [58104] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4086), 1, @@ -123180,7 +123182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2002), 1, aux_sym_arguments_repeat1, - [58113] = 4, + [58117] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123189,7 +123191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2484), 1, sym__return_type, - [58126] = 4, + [58130] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123198,21 +123200,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2485), 1, sym__return_type, - [58139] = 2, + [58143] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3786), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58148] = 2, + [58152] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3770), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58157] = 4, + [58161] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4031), 1, @@ -123221,28 +123223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2377), 1, sym_namespace_use_group, - [58170] = 2, + [58174] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4094), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [58179] = 2, + [58183] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4096), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58188] = 2, + [58192] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3777), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58197] = 3, + [58201] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4100), 1, @@ -123250,7 +123252,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4098), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58208] = 3, + [58212] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4104), 1, @@ -123258,7 +123260,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4102), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58219] = 4, + [58223] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4106), 1, @@ -123267,7 +123269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2397), 1, sym_nowdoc_body, - [58232] = 4, + [58236] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4015), 1, @@ -123276,7 +123278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2396), 1, sym_heredoc_body, - [58245] = 4, + [58249] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1721), 1, @@ -123285,7 +123287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2018), 1, aux_sym_formal_parameters_repeat1, - [58258] = 4, + [58262] = 4, ACTIONS(763), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -123294,7 +123296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [58271] = 4, + [58275] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123303,7 +123305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, STATE(2020), 1, sym_variable_name, - [58284] = 3, + [58288] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4120), 1, @@ -123311,7 +123313,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4118), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58295] = 4, + [58299] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123320,7 +123322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, STATE(2021), 1, sym_variable_name, - [58308] = 3, + [58312] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4126), 1, @@ -123328,7 +123330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4124), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58319] = 4, + [58323] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123337,14 +123339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2488), 1, sym__return_type, - [58332] = 2, + [58336] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3840), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [58341] = 4, + [58345] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3426), 1, @@ -123353,7 +123355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2031), 1, aux_sym_base_clause_repeat1, - [58354] = 3, + [58358] = 3, ACTIONS(1136), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123361,7 +123363,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58365] = 3, + [58369] = 3, ACTIONS(1336), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123369,7 +123371,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1334), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58376] = 4, + [58380] = 4, ACTIONS(791), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -123378,7 +123380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1918), 1, aux_sym_array_creation_expression_repeat1, - [58389] = 3, + [58393] = 3, ACTIONS(1332), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123386,7 +123388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1330), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58400] = 4, + [58404] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3116), 1, @@ -123395,7 +123397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2032), 1, aux_sym_unset_statement_repeat1, - [58413] = 3, + [58417] = 3, ACTIONS(1320), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123403,7 +123405,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1318), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58424] = 3, + [58428] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4134), 1, @@ -123411,7 +123413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4132), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [58435] = 3, + [58439] = 3, ACTIONS(1312), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123419,7 +123421,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1310), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58446] = 4, + [58450] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4033), 1, @@ -123428,7 +123430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2377), 1, sym_namespace_use_group, - [58459] = 3, + [58463] = 3, ACTIONS(1292), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123436,7 +123438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1290), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58470] = 4, + [58474] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4138), 1, @@ -123445,7 +123447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2037), 1, aux_sym_match_block_repeat1, - [58483] = 3, + [58487] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3845), 1, @@ -123453,7 +123455,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4142), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58494] = 3, + [58498] = 3, ACTIONS(1280), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123461,14 +123463,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1278), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58505] = 2, + [58509] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4144), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [58514] = 4, + [58518] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123477,14 +123479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [58527] = 2, + [58531] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4148), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [58536] = 3, + [58540] = 3, ACTIONS(1280), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123492,7 +123494,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1278), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58547] = 4, + [58551] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123501,7 +123503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [58560] = 3, + [58564] = 3, ACTIONS(1268), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123509,7 +123511,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1266), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58571] = 4, + [58575] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1646), 1, @@ -123518,7 +123520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [58584] = 3, + [58588] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3845), 1, @@ -123526,7 +123528,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4155), 2, anon_sym_COMMA, anon_sym_RBRACK, - [58595] = 3, + [58599] = 3, ACTIONS(1256), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123534,7 +123536,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1254), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58606] = 4, + [58610] = 4, ACTIONS(835), 1, anon_sym_RBRACE, ACTIONS(1522), 1, @@ -123543,14 +123545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2165), 1, aux_sym_match_block_repeat1, - [58619] = 2, + [58623] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3965), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [58628] = 4, + [58632] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4159), 1, @@ -123559,7 +123561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1998), 1, aux_sym_attribute_group_repeat1, - [58641] = 4, + [58645] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4106), 1, @@ -123568,7 +123570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2302), 1, sym_nowdoc_body, - [58654] = 3, + [58658] = 3, ACTIONS(1252), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123576,7 +123578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1250), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58665] = 4, + [58669] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4015), 1, @@ -123585,7 +123587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_end, STATE(2301), 1, sym_heredoc_body, - [58678] = 4, + [58682] = 4, ACTIONS(769), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -123594,7 +123596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [58691] = 3, + [58695] = 3, ACTIONS(1220), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123602,7 +123604,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1218), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58702] = 4, + [58706] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123611,7 +123613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2529), 1, sym__return_type, - [58715] = 3, + [58719] = 3, ACTIONS(1220), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123619,7 +123621,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1218), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58726] = 4, + [58730] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123628,7 +123630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2556), 1, sym__return_type, - [58739] = 3, + [58743] = 3, ACTIONS(1224), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123636,7 +123638,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1222), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58750] = 4, + [58754] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -123645,7 +123647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2563), 1, sym__return_type, - [58763] = 3, + [58767] = 3, ACTIONS(1212), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123653,7 +123655,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1210), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58774] = 4, + [58778] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4033), 1, @@ -123662,7 +123664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2270), 1, sym_namespace_use_group, - [58787] = 3, + [58791] = 3, ACTIONS(1184), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123670,7 +123672,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1182), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58798] = 4, + [58802] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4176), 1, @@ -123679,7 +123681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2079), 1, aux_sym_namespace_use_group_repeat1, - [58811] = 3, + [58815] = 3, ACTIONS(1124), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123687,7 +123689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1122), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58822] = 3, + [58826] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4182), 1, @@ -123695,7 +123697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4180), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58833] = 3, + [58837] = 3, ACTIONS(1180), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123703,7 +123705,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1178), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58844] = 3, + [58848] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4186), 1, @@ -123711,7 +123713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4184), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58855] = 3, + [58859] = 3, ACTIONS(1176), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123719,7 +123721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1174), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58866] = 4, + [58870] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4188), 1, @@ -123728,7 +123730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2018), 1, aux_sym_formal_parameters_repeat1, - [58879] = 3, + [58883] = 3, ACTIONS(1172), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123736,7 +123738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1170), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58890] = 3, + [58894] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4195), 1, @@ -123744,7 +123746,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4193), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58901] = 3, + [58905] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4199), 1, @@ -123752,7 +123754,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4197), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58912] = 3, + [58916] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4203), 1, @@ -123760,7 +123762,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58923] = 4, + [58927] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123769,7 +123771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, STATE(2103), 1, sym_variable_name, - [58936] = 3, + [58940] = 3, ACTIONS(1160), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123777,7 +123779,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1158), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58947] = 3, + [58951] = 3, ACTIONS(1160), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123785,7 +123787,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1158), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58958] = 3, + [58962] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4209), 1, @@ -123793,7 +123795,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4207), 2, anon_sym_COMMA, anon_sym_RPAREN, - [58969] = 3, + [58973] = 3, ACTIONS(1148), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123801,7 +123803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1146), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [58980] = 4, + [58984] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4211), 1, @@ -123810,7 +123812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2114), 1, aux_sym_anonymous_function_use_clause_repeat1, - [58993] = 4, + [58997] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -123819,7 +123821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1804), 1, sym_property_element, - [59006] = 3, + [59010] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4217), 1, @@ -123827,7 +123829,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4215), 2, sym__automatic_semicolon, anon_sym_SEMI, - [59017] = 4, + [59021] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3426), 1, @@ -123836,7 +123838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1785), 1, aux_sym_base_clause_repeat1, - [59030] = 4, + [59034] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3309), 1, @@ -123845,7 +123847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2032), 1, aux_sym_unset_statement_repeat1, - [59043] = 3, + [59047] = 3, ACTIONS(1136), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123853,7 +123855,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59054] = 4, + [59058] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123862,7 +123864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2620), 1, sym_variable_name, - [59067] = 4, + [59071] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, @@ -123871,7 +123873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2504), 1, sym_variable_name, - [59080] = 4, + [59084] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4033), 1, @@ -123880,7 +123882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2366), 1, sym_namespace_use_group, - [59093] = 4, + [59097] = 4, ACTIONS(817), 1, anon_sym_RBRACE, ACTIONS(1522), 1, @@ -123889,7 +123891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2165), 1, aux_sym_match_block_repeat1, - [59106] = 3, + [59110] = 3, ACTIONS(1396), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123897,7 +123899,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1394), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59117] = 4, + [59121] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2453), 1, @@ -123906,7 +123908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2153), 1, aux_sym_match_condition_list_repeat1, - [59130] = 4, + [59134] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123915,7 +123917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2160), 1, aux_sym__list_destructing_repeat1, - [59143] = 4, + [59147] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3116), 1, @@ -123924,7 +123926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2032), 1, aux_sym_unset_statement_repeat1, - [59156] = 4, + [59160] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -123933,7 +123935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2157), 1, aux_sym__list_destructing_repeat1, - [59169] = 3, + [59173] = 3, ACTIONS(1132), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123941,21 +123943,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1130), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59180] = 2, + [59184] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4236), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [59189] = 2, + [59193] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4238), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [59198] = 4, + [59202] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4033), 1, @@ -123964,7 +123966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_name, STATE(2418), 1, sym_namespace_use_group, - [59211] = 3, + [59215] = 3, ACTIONS(1132), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -123972,7 +123974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1130), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59222] = 4, + [59226] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4031), 1, @@ -123981,7 +123983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2418), 1, sym_namespace_use_group, - [59235] = 4, + [59239] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4240), 1, @@ -123990,7 +123992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nowdoc_string, STATE(1819), 1, aux_sym_nowdoc_body_repeat1, - [59248] = 4, + [59252] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4244), 1, @@ -123999,7 +124001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2050), 1, aux_sym_arguments_repeat1, - [59261] = 4, + [59265] = 4, ACTIONS(805), 1, anon_sym_RBRACK, ACTIONS(1522), 1, @@ -124008,7 +124010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1906), 1, aux_sym_array_creation_expression_repeat1, - [59274] = 3, + [59278] = 3, ACTIONS(1400), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124016,7 +124018,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1398), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59285] = 3, + [59289] = 3, ACTIONS(1468), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124024,7 +124026,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1466), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59296] = 3, + [59300] = 3, ACTIONS(1128), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124032,7 +124034,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1126), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59307] = 3, + [59311] = 3, ACTIONS(1456), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124040,7 +124042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1454), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59318] = 3, + [59322] = 3, ACTIONS(1420), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124048,7 +124050,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1418), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59329] = 3, + [59333] = 3, ACTIONS(1376), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124056,7 +124058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1374), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59340] = 3, + [59344] = 3, ACTIONS(1368), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124064,7 +124066,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1366), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59351] = 3, + [59355] = 3, ACTIONS(1364), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124072,7 +124074,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1362), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59362] = 3, + [59366] = 3, ACTIONS(1340), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124080,7 +124082,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1338), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59373] = 3, + [59377] = 3, ACTIONS(1244), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124088,7 +124090,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1242), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59384] = 3, + [59388] = 3, ACTIONS(1244), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124096,7 +124098,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1242), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59395] = 3, + [59399] = 3, ACTIONS(1232), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124104,7 +124106,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1230), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59406] = 3, + [59410] = 3, ACTIONS(1228), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124112,7 +124114,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1226), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59417] = 3, + [59421] = 3, ACTIONS(1164), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124120,7 +124122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1162), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59428] = 3, + [59432] = 3, ACTIONS(1164), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124128,7 +124130,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1162), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59439] = 3, + [59443] = 3, ACTIONS(1144), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124136,7 +124138,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1142), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59450] = 3, + [59454] = 3, ACTIONS(1496), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124144,7 +124146,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1494), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59461] = 3, + [59465] = 3, ACTIONS(1488), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124152,7 +124154,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1486), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59472] = 3, + [59476] = 3, ACTIONS(1412), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124160,7 +124162,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1410), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59483] = 3, + [59487] = 3, ACTIONS(1216), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124168,7 +124170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1214), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59494] = 3, + [59498] = 3, ACTIONS(1296), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124176,7 +124178,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1294), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59505] = 3, + [59509] = 3, ACTIONS(1140), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124184,7 +124186,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1138), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59516] = 3, + [59520] = 3, ACTIONS(1152), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124192,7 +124194,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1150), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59527] = 4, + [59531] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4031), 1, @@ -124201,7 +124203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(2420), 1, sym_namespace_use_group, - [59540] = 3, + [59544] = 3, ACTIONS(1260), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124209,7 +124211,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1258), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59551] = 3, + [59555] = 3, ACTIONS(1156), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124217,7 +124219,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1154), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59562] = 4, + [59566] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3424), 1, @@ -124226,7 +124228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(2650), 1, sym__return_type, - [59575] = 4, + [59579] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4176), 1, @@ -124235,7 +124237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1907), 1, aux_sym_namespace_use_group_repeat1, - [59588] = 3, + [59592] = 3, ACTIONS(1192), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124243,7 +124245,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1190), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59599] = 3, + [59603] = 3, ACTIONS(1196), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124251,7 +124253,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1194), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59610] = 3, + [59614] = 3, ACTIONS(1200), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124259,7 +124261,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1198), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59621] = 3, + [59625] = 3, ACTIONS(1236), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124267,7 +124269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1234), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59632] = 3, + [59636] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4257), 1, @@ -124275,7 +124277,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4255), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59643] = 3, + [59647] = 3, ACTIONS(1240), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124283,7 +124285,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1238), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59654] = 3, + [59658] = 3, ACTIONS(1248), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124291,7 +124293,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1246), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59665] = 3, + [59669] = 3, ACTIONS(1248), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124299,7 +124301,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1246), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59676] = 3, + [59680] = 3, ACTIONS(1264), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124307,7 +124309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1262), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59687] = 3, + [59691] = 3, ACTIONS(1272), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124315,7 +124317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1270), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59698] = 3, + [59702] = 3, ACTIONS(1284), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124323,7 +124325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1282), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59709] = 3, + [59713] = 3, ACTIONS(1288), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124331,7 +124333,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1286), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59720] = 3, + [59724] = 3, ACTIONS(1416), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124339,14 +124341,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1414), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59731] = 2, + [59735] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4259), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [59740] = 3, + [59744] = 3, ACTIONS(1464), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124354,7 +124356,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1462), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59751] = 3, + [59755] = 3, ACTIONS(1404), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124362,7 +124364,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1402), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59762] = 3, + [59766] = 3, ACTIONS(1328), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124370,7 +124372,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1326), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59773] = 3, + [59777] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4263), 1, @@ -124378,7 +124380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4261), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59784] = 3, + [59788] = 3, ACTIONS(1356), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124386,7 +124388,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1354), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59795] = 3, + [59799] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4267), 1, @@ -124394,7 +124396,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4265), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59806] = 4, + [59810] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4269), 1, @@ -124403,7 +124405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2110), 1, aux_sym_arguments_repeat1, - [59819] = 3, + [59823] = 3, ACTIONS(1360), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124411,7 +124413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59830] = 4, + [59834] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4273), 1, @@ -124420,7 +124422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(4277), 1, sym_heredoc_start, - [59843] = 3, + [59847] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4281), 1, @@ -124428,7 +124430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4279), 2, anon_sym_COMMA, anon_sym_RPAREN, - [59854] = 3, + [59858] = 3, ACTIONS(1408), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124436,7 +124438,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1406), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59865] = 3, + [59869] = 3, ACTIONS(1436), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124444,7 +124446,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1434), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59876] = 3, + [59880] = 3, ACTIONS(1452), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124452,7 +124454,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1450), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59887] = 3, + [59891] = 3, ACTIONS(1460), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124460,7 +124462,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1458), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59898] = 3, + [59902] = 3, ACTIONS(117), 1, anon_sym_DOLLAR, ACTIONS(1522), 1, @@ -124468,7 +124470,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1825), 2, sym_dynamic_variable_name, sym_variable_name, - [59909] = 3, + [59913] = 3, ACTIONS(1484), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124476,7 +124478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1482), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59920] = 4, + [59924] = 4, ACTIONS(803), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124485,7 +124487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [59933] = 3, + [59937] = 3, ACTIONS(1440), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124493,21 +124495,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1438), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59944] = 2, + [59948] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4285), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [59953] = 2, + [59957] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4287), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [59962] = 4, + [59966] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(3606), 1, @@ -124516,7 +124518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2171), 1, aux_sym_anonymous_function_use_clause_repeat1, - [59975] = 3, + [59979] = 3, ACTIONS(1308), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124524,7 +124526,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1306), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59986] = 3, + [59990] = 3, ACTIONS(1304), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124532,7 +124534,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1302), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [59997] = 3, + [60001] = 3, ACTIONS(1300), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124540,7 +124542,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1298), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60008] = 4, + [60012] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -124549,7 +124551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(1902), 1, sym_property_element, - [60021] = 3, + [60025] = 3, ACTIONS(1168), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124557,7 +124559,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1166), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60032] = 3, + [60036] = 3, ACTIONS(1388), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124565,7 +124567,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1386), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60043] = 3, + [60047] = 3, ACTIONS(1424), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124573,7 +124575,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1422), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60054] = 3, + [60058] = 3, ACTIONS(1428), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124581,7 +124583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1426), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60065] = 3, + [60069] = 3, ACTIONS(1444), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124589,7 +124591,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1442), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60076] = 3, + [60080] = 3, ACTIONS(1476), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124597,7 +124599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1474), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60087] = 3, + [60091] = 3, ACTIONS(1480), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124605,7 +124607,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1478), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60098] = 3, + [60102] = 3, ACTIONS(1432), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124613,7 +124615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1430), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60109] = 3, + [60113] = 3, ACTIONS(1392), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124621,7 +124623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1390), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60120] = 3, + [60124] = 3, ACTIONS(1384), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124629,7 +124631,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1382), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60131] = 3, + [60135] = 3, ACTIONS(1380), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124637,7 +124639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1378), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60142] = 3, + [60146] = 3, ACTIONS(1372), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124645,7 +124647,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1370), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60153] = 4, + [60157] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(1684), 1, @@ -124654,7 +124656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_name, STATE(2170), 1, sym_property_element, - [60166] = 3, + [60170] = 3, ACTIONS(1348), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124662,7 +124664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1346), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60177] = 3, + [60181] = 3, ACTIONS(1324), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124670,7 +124672,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1322), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60188] = 3, + [60192] = 3, ACTIONS(1316), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124678,7 +124680,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1314), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60199] = 3, + [60203] = 3, ACTIONS(1276), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124686,7 +124688,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1274), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60210] = 3, + [60214] = 3, ACTIONS(1352), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124694,7 +124696,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1350), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60221] = 3, + [60225] = 3, ACTIONS(1208), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124702,7 +124704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1206), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60232] = 3, + [60236] = 3, ACTIONS(1204), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124710,14 +124712,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1202), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60243] = 2, + [60247] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4291), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [60252] = 3, + [60256] = 3, ACTIONS(1500), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124725,7 +124727,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1498), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60263] = 3, + [60267] = 3, ACTIONS(1492), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124733,7 +124735,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1490), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60274] = 3, + [60278] = 3, ACTIONS(1472), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124741,14 +124743,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1470), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60285] = 2, + [60289] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3478), 3, anon_sym_COMMA, anon_sym_LBRACE, aux_sym_class_interface_clause_token1, - [60294] = 4, + [60298] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4293), 1, @@ -124757,14 +124759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2150), 1, aux_sym_arguments_repeat1, - [60307] = 2, + [60311] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3217), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACE, - [60316] = 3, + [60320] = 3, ACTIONS(1188), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124772,7 +124774,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1186), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60327] = 3, + [60331] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4299), 1, @@ -124780,7 +124782,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4297), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60338] = 3, + [60342] = 3, ACTIONS(1448), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124788,14 +124790,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1446), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60349] = 2, + [60353] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2727), 3, sym__automatic_semicolon, anon_sym_SEMI, sym_name, - [60358] = 4, + [60362] = 4, ACTIONS(779), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124804,7 +124806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [60371] = 3, + [60375] = 3, ACTIONS(1344), 1, aux_sym_else_clause_token1, ACTIONS(1522), 1, @@ -124812,7 +124814,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1342), 2, aux_sym_while_statement_token1, aux_sym_else_if_clause_token1, - [60382] = 3, + [60386] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4305), 1, @@ -124820,7 +124822,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4303), 2, aux_sym_if_statement_token2, aux_sym_else_if_clause_token1, - [60393] = 4, + [60397] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(2505), 1, @@ -124829,7 +124831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2153), 1, aux_sym_match_condition_list_repeat1, - [60406] = 4, + [60410] = 4, ACTIONS(767), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124838,7 +124840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [60419] = 4, + [60423] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4312), 1, @@ -124847,14 +124849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2154), 1, aux_sym_arguments_repeat1, - [60432] = 2, + [60436] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4316), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [60441] = 4, + [60445] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -124863,7 +124865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [60454] = 3, + [60458] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4320), 1, @@ -124871,14 +124873,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60465] = 2, + [60469] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4324), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [60474] = 4, + [60478] = 4, ACTIONS(831), 1, anon_sym_COMMA, ACTIONS(1522), 1, @@ -124887,7 +124889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1993), 1, aux_sym__list_destructing_repeat1, - [60487] = 4, + [60491] = 4, ACTIONS(785), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124896,7 +124898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [60500] = 4, + [60504] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4330), 1, @@ -124905,7 +124907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2161), 1, aux_sym_arguments_repeat1, - [60513] = 4, + [60517] = 4, ACTIONS(781), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124914,14 +124916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [60526] = 2, + [60530] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4336), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [60535] = 4, + [60539] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4338), 1, @@ -124930,14 +124932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(2165), 1, aux_sym_match_block_repeat1, - [60548] = 2, + [60552] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4343), 3, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - [60557] = 4, + [60561] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4345), 1, @@ -124946,7 +124948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2168), 1, aux_sym_arguments_repeat1, - [60570] = 4, + [60574] = 4, ACTIONS(801), 1, anon_sym_RPAREN, ACTIONS(1522), 1, @@ -124955,21 +124957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(2050), 1, aux_sym_arguments_repeat1, - [60583] = 2, + [60587] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3799), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, - [60592] = 2, + [60596] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3955), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COMMA, - [60601] = 4, + [60605] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4351), 1, @@ -124978,7 +124980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2171), 1, aux_sym_anonymous_function_use_clause_repeat1, - [60614] = 3, + [60618] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4358), 1, @@ -124986,7 +124988,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4356), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60625] = 4, + [60629] = 4, ACTIONS(1522), 1, sym_comment, ACTIONS(4360), 1, @@ -124995,2970 +124997,2970 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(2163), 1, aux_sym_arguments_repeat1, - [60638] = 3, + [60642] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4364), 1, anon_sym_LPAREN, STATE(2338), 1, sym_parenthesized_expression, - [60648] = 2, + [60652] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4155), 2, anon_sym_COMMA, anon_sym_RBRACK, - [60656] = 2, + [60660] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4366), 2, anon_sym_LBRACE, anon_sym_COLON, - [60664] = 2, + [60668] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60672] = 3, + [60676] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4368), 1, anon_sym_LBRACE, STATE(432), 1, sym_compound_statement, - [60682] = 3, + [60686] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(446), 1, sym_declaration_list, - [60692] = 3, + [60696] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1686), 1, anon_sym_LPAREN, STATE(679), 1, sym_arguments, - [60702] = 2, + [60706] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4370), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60710] = 2, + [60714] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4372), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60718] = 3, + [60722] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(919), 1, sym_declaration_list, - [60728] = 3, + [60732] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4374), 1, sym_name, STATE(2615), 1, sym_namespace_name, - [60738] = 2, + [60742] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4377), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60746] = 3, + [60750] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1097), 1, sym_compound_statement, - [60756] = 2, + [60760] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4354), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60764] = 2, + [60768] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4379), 2, anon_sym_LBRACE, anon_sym_COLON, - [60772] = 2, + [60776] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4381), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60780] = 3, + [60784] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(1735), 1, sym_compound_statement, - [60790] = 3, + [60794] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(32), 1, sym_parenthesized_expression, - [60800] = 3, + [60804] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2721), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_EQ, - [60810] = 3, + [60814] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4374), 1, sym_name, STATE(2587), 1, sym_namespace_name, - [60820] = 2, + [60824] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4387), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60828] = 2, + [60832] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3970), 2, anon_sym_COMMA, anon_sym_RBRACE, - [60836] = 3, + [60840] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(40), 1, sym_parenthesized_expression, - [60846] = 2, + [60850] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4389), 2, anon_sym_COMMA, anon_sym_RBRACE, - [60854] = 3, + [60858] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4374), 1, sym_name, STATE(2579), 1, sym_namespace_name, - [60864] = 3, + [60868] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(449), 1, sym_declaration_list, - [60874] = 3, + [60878] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1695), 1, anon_sym_LPAREN, STATE(743), 1, sym_arguments, - [60884] = 3, + [60888] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(450), 1, sym_declaration_list, - [60894] = 3, + [60898] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3602), 1, anon_sym_LBRACE, STATE(478), 1, sym_enum_declaration_list, - [60904] = 3, + [60908] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(31), 1, sym_parenthesized_expression, - [60914] = 3, + [60918] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1081), 1, sym_compound_statement, - [60924] = 3, + [60928] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1082), 1, sym_compound_statement, - [60934] = 3, + [60938] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1085), 1, sym_compound_statement, - [60944] = 3, + [60948] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(451), 1, sym_declaration_list, - [60954] = 3, + [60958] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4391), 1, anon_sym_LPAREN, STATE(2246), 1, sym_parenthesized_expression, - [60964] = 2, + [60968] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4393), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60972] = 2, + [60976] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2533), 2, anon_sym_COMMA, anon_sym_RPAREN, - [60980] = 2, + [60984] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(497), 2, sym__automatic_semicolon, anon_sym_SEMI, - [60988] = 3, + [60992] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4391), 1, anon_sym_LPAREN, STATE(1914), 1, sym_parenthesized_expression, - [60998] = 3, + [61002] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4395), 1, anon_sym_SQUOTE, ACTIONS(4397), 1, sym_string_value, - [61008] = 2, + [61012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3875), 2, sym_heredoc_end, sym__new_line, - [61016] = 2, + [61020] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4399), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61024] = 3, + [61028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4401), 1, sym__new_line, ACTIONS(4403), 1, sym_heredoc_end, - [61034] = 3, + [61038] = 3, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(484), 1, sym_compound_statement, - [61044] = 2, + [61048] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61052] = 2, + [61056] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4405), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61060] = 2, + [61064] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3258), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61068] = 2, + [61072] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4407), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61076] = 2, + [61080] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3845), 2, anon_sym_EQ, anon_sym_RPAREN, - [61084] = 2, + [61088] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4409), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61092] = 3, + [61096] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1093), 1, sym_declaration_list, - [61102] = 2, + [61106] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4411), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61110] = 3, + [61114] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1897), 1, anon_sym_LPAREN, STATE(867), 1, sym_arguments, - [61120] = 3, + [61124] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(437), 1, sym_declaration_list, - [61130] = 2, + [61134] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4341), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61138] = 3, + [61142] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4413), 1, anon_sym_SEMI, ACTIONS(4415), 1, sym__automatic_semicolon, - [61148] = 2, + [61152] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4417), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61156] = 3, + [61160] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4419), 1, sym_name, STATE(2551), 1, sym_namespace_name, - [61166] = 3, + [61170] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4374), 1, sym_name, STATE(2547), 1, sym_namespace_name, - [61176] = 3, + [61180] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1936), 1, sym_formal_parameters, - [61186] = 3, + [61190] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4368), 1, anon_sym_LBRACE, STATE(426), 1, sym_compound_statement, - [61196] = 2, + [61200] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4422), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61204] = 2, + [61208] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4424), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61212] = 3, + [61216] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3764), 1, anon_sym_LBRACE, STATE(535), 1, sym_declaration_list, - [61222] = 3, + [61226] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1688), 1, anon_sym_BSLASH, STATE(2260), 1, aux_sym_namespace_name_repeat1, - [61232] = 3, + [61236] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4426), 1, anon_sym_LPAREN, ACTIONS(4428), 1, anon_sym_RPAREN, - [61242] = 2, + [61246] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4430), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61250] = 2, + [61254] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4432), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61258] = 3, + [61262] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1899), 1, anon_sym_LPAREN, STATE(798), 1, sym_arguments, - [61268] = 2, + [61272] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4096), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61276] = 2, + [61280] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4434), 2, anon_sym_LBRACE, anon_sym_COLON, - [61284] = 2, + [61288] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4436), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61292] = 3, + [61296] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4438), 1, anon_sym_LBRACE, STATE(1065), 1, sym_match_block, - [61302] = 3, + [61306] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(1687), 1, sym_compound_statement, - [61312] = 3, + [61316] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2519), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_EQ, - [61322] = 3, + [61326] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1630), 1, sym_formal_parameters, - [61332] = 2, + [61336] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4440), 2, anon_sym_COMMA, anon_sym_RBRACK, - [61340] = 3, + [61344] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1684), 1, sym_declaration_list, - [61350] = 3, + [61354] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2189), 1, sym_variable_name, - [61360] = 3, + [61364] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(1691), 1, sym_compound_statement, - [61370] = 3, + [61374] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3531), 1, anon_sym_LBRACE, STATE(2105), 1, sym_enum_declaration_list, - [61380] = 3, + [61384] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(29), 1, sym_parenthesized_expression, - [61390] = 3, + [61394] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4391), 1, anon_sym_LPAREN, STATE(2343), 1, sym_parenthesized_expression, - [61400] = 3, + [61404] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4391), 1, anon_sym_LPAREN, STATE(1944), 1, sym_parenthesized_expression, - [61410] = 2, + [61414] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4443), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61418] = 3, + [61422] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(2107), 1, sym_declaration_list, - [61428] = 3, + [61432] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4445), 1, anon_sym_BSLASH, STATE(1671), 1, aux_sym_namespace_name_repeat1, - [61438] = 2, + [61442] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2461), 2, anon_sym_SEMI, anon_sym_RPAREN, - [61446] = 3, + [61450] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(905), 1, sym_compound_statement, - [61456] = 3, + [61460] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2172), 1, sym_variable_name, - [61466] = 2, + [61470] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4448), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61474] = 2, + [61478] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4450), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61482] = 3, + [61486] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2757), 1, aux_sym__arrow_function_header_token1, ACTIONS(4452), 1, aux_sym_namespace_use_declaration_token2, - [61492] = 3, + [61496] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4454), 1, anon_sym_LPAREN, STATE(1674), 1, sym_formal_parameters, - [61502] = 2, + [61506] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4456), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61510] = 2, + [61514] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3808), 2, anon_sym_COMMA, anon_sym_RBRACE, - [61518] = 2, + [61522] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4458), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61526] = 3, + [61530] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(64), 1, sym_parenthesized_expression, - [61536] = 3, + [61540] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1084), 1, sym_compound_statement, - [61546] = 3, + [61550] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1940), 1, sym_formal_parameters, - [61556] = 3, + [61560] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(911), 1, sym_compound_statement, - [61566] = 3, + [61570] = 3, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(511), 1, sym_compound_statement, - [61576] = 3, + [61580] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(447), 1, sym_declaration_list, - [61586] = 3, + [61590] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1593), 1, sym_formal_parameters, - [61596] = 3, + [61600] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(48), 1, sym_parenthesized_expression, - [61606] = 3, + [61610] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4374), 1, sym_name, STATE(2477), 1, sym_namespace_name, - [61616] = 3, + [61620] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(435), 1, sym_declaration_list, - [61626] = 3, + [61630] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1596), 1, sym_formal_parameters, - [61636] = 3, + [61640] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2757), 1, aux_sym__arrow_function_header_token1, ACTIONS(4460), 1, aux_sym_namespace_use_declaration_token2, - [61646] = 3, + [61650] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1072), 1, sym_compound_statement, - [61656] = 3, + [61660] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1069), 1, sym_compound_statement, - [61666] = 2, + [61670] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4462), 2, anon_sym_string, anon_sym_int, - [61674] = 3, + [61678] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1066), 1, sym_compound_statement, - [61684] = 3, + [61688] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1634), 1, anon_sym_LPAREN, STATE(621), 1, sym_arguments, - [61694] = 3, + [61698] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(907), 1, sym_compound_statement, - [61704] = 3, + [61708] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2413), 1, sym_variable_name, - [61714] = 3, + [61718] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(436), 1, sym_declaration_list, - [61724] = 3, + [61728] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(2072), 1, sym_compound_statement, - [61734] = 3, + [61738] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3531), 1, anon_sym_LBRACE, STATE(2015), 1, sym_enum_declaration_list, - [61744] = 3, + [61748] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1122), 1, sym_compound_statement, - [61754] = 2, + [61758] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4464), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61762] = 3, + [61766] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(909), 1, sym_compound_statement, - [61772] = 2, + [61776] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4247), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61780] = 3, + [61784] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1971), 1, sym_formal_parameters, - [61790] = 3, + [61794] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1137), 1, sym_compound_statement, - [61800] = 3, + [61804] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1720), 1, sym_declaration_list, - [61810] = 2, + [61814] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2555), 2, anon_sym_COMMA, anon_sym_RPAREN, - [61818] = 3, + [61822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4466), 1, sym__new_line, ACTIONS(4468), 1, sym_heredoc_end, - [61828] = 3, + [61832] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4470), 1, sym__new_line, ACTIONS(4472), 1, sym_heredoc_end, - [61838] = 2, + [61842] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4474), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61846] = 3, + [61850] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3764), 1, anon_sym_LBRACE, STATE(555), 1, sym_declaration_list, - [61856] = 2, + [61860] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4476), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61864] = 2, + [61868] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4478), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61872] = 2, + [61876] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4480), 2, anon_sym_string, anon_sym_int, - [61880] = 2, + [61884] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3311), 2, anon_sym_COMMA, anon_sym_RBRACK, - [61888] = 3, + [61892] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2368), 1, sym_variable_name, - [61898] = 2, + [61902] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(469), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61906] = 3, + [61910] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1685), 1, sym_declaration_list, - [61916] = 3, + [61920] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(968), 1, sym_compound_statement, - [61926] = 3, + [61930] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1642), 1, sym_formal_parameters, - [61936] = 2, + [61940] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(475), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61944] = 3, + [61948] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(1695), 1, sym_compound_statement, - [61954] = 3, + [61958] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1042), 1, sym_declaration_list, - [61964] = 3, + [61968] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1043), 1, sym_declaration_list, - [61974] = 2, + [61978] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4482), 2, sym__automatic_semicolon, anon_sym_SEMI, - [61982] = 3, + [61986] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3602), 1, anon_sym_LBRACE, STATE(549), 1, sym_enum_declaration_list, - [61992] = 2, + [61996] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4484), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62000] = 3, + [62004] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1698), 1, sym_declaration_list, - [62010] = 3, + [62014] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(445), 1, sym_declaration_list, - [62020] = 3, + [62024] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1617), 1, sym_formal_parameters, - [62030] = 2, + [62034] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4486), 2, anon_sym_string, anon_sym_int, - [62038] = 2, + [62042] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4488), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62046] = 3, + [62050] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1699), 1, sym_declaration_list, - [62056] = 3, + [62060] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4490), 1, anon_sym_SEMI, ACTIONS(4492), 1, sym__automatic_semicolon, - [62066] = 2, + [62070] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4494), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62074] = 3, + [62078] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(937), 1, sym_compound_statement, - [62084] = 3, + [62088] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1615), 1, sym_formal_parameters, - [62094] = 2, + [62098] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4496), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62102] = 3, + [62106] = 3, ACTIONS(463), 1, anon_sym_COLON, ACTIONS(1522), 1, sym_comment, STATE(2152), 1, sym_colon_block, - [62112] = 3, + [62116] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4368), 1, anon_sym_LBRACE, STATE(425), 1, sym_compound_statement, - [62122] = 3, + [62126] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2485), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_EQ, - [62132] = 3, + [62136] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2571), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_EQ, - [62142] = 3, + [62146] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4364), 1, anon_sym_LPAREN, STATE(2427), 1, sym_parenthesized_expression, - [62152] = 3, + [62156] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1050), 1, sym_declaration_list, - [62162] = 2, + [62166] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4498), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62170] = 3, + [62174] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(78), 1, sym_parenthesized_expression, - [62180] = 2, + [62184] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4078), 2, anon_sym_COMMA, anon_sym_RBRACK, - [62188] = 3, + [62192] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(962), 1, sym_compound_statement, - [62198] = 2, + [62202] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4500), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62206] = 3, + [62210] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4502), 1, anon_sym_LBRACE, STATE(965), 1, sym_match_block, - [62216] = 3, + [62220] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(960), 1, sym_compound_statement, - [62226] = 2, + [62230] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4504), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62234] = 3, + [62238] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(958), 1, sym_compound_statement, - [62244] = 3, + [62248] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3602), 1, anon_sym_LBRACE, STATE(562), 1, sym_enum_declaration_list, - [62254] = 2, + [62258] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4506), 2, anon_sym_COMMA, anon_sym_RBRACK, - [62262] = 2, + [62266] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3468), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62270] = 3, + [62274] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4508), 1, sym__new_line, ACTIONS(4510), 1, sym_heredoc_end, - [62280] = 3, + [62284] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1706), 1, sym_declaration_list, - [62290] = 2, + [62294] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4512), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62298] = 2, + [62302] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2557), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62306] = 3, + [62310] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(2004), 1, sym_formal_parameters, - [62316] = 3, + [62320] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2245), 1, sym_variable_name, - [62326] = 3, + [62330] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1090), 1, sym_declaration_list, - [62336] = 3, + [62340] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(915), 1, sym_declaration_list, - [62346] = 3, + [62350] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(957), 1, sym_declaration_list, - [62356] = 3, + [62360] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4514), 1, anon_sym_SEMI, ACTIONS(4516), 1, sym__automatic_semicolon, - [62366] = 3, + [62370] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2258), 1, sym_variable_name, - [62376] = 3, + [62380] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(1719), 1, sym_compound_statement, - [62386] = 3, + [62390] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2099), 1, sym_variable_name, - [62396] = 2, + [62400] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4518), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62404] = 3, + [62408] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2264), 1, sym_variable_name, - [62414] = 2, + [62418] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4520), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62422] = 2, + [62426] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4522), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62430] = 3, + [62434] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2265), 1, sym_variable_name, - [62440] = 2, + [62444] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4524), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62448] = 3, + [62452] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(955), 1, sym_compound_statement, - [62458] = 2, + [62462] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4191), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62466] = 3, + [62470] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1725), 1, sym_declaration_list, - [62476] = 3, + [62480] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1726), 1, sym_declaration_list, - [62486] = 3, + [62490] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2084), 1, sym_variable_name, - [62496] = 2, + [62500] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4526), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62504] = 3, + [62508] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(954), 1, sym_compound_statement, - [62514] = 3, + [62518] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4528), 1, sym_name, STATE(1777), 1, sym_namespace_name, - [62524] = 2, + [62528] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4530), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62532] = 3, + [62536] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(951), 1, sym_compound_statement, - [62542] = 3, + [62546] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1087), 1, sym_compound_statement, - [62552] = 3, + [62556] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1074), 1, sym_compound_statement, - [62562] = 3, + [62566] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(948), 1, sym_compound_statement, - [62572] = 3, + [62576] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(2078), 1, sym_formal_parameters, - [62582] = 3, + [62586] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(2006), 1, sym_formal_parameters, - [62592] = 2, + [62596] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4532), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62600] = 3, + [62604] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1540), 1, anon_sym_LPAREN, STATE(591), 1, sym_arguments, - [62610] = 3, + [62614] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(442), 1, sym_declaration_list, - [62620] = 3, + [62624] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3602), 1, anon_sym_LBRACE, STATE(539), 1, sym_enum_declaration_list, - [62630] = 2, + [62634] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4534), 2, anon_sym_string, anon_sym_int, - [62638] = 3, + [62642] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1052), 1, sym_compound_statement, - [62648] = 3, + [62652] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1620), 1, sym_formal_parameters, - [62658] = 3, + [62662] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1096), 1, sym_compound_statement, - [62668] = 3, + [62672] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1739), 1, sym_declaration_list, - [62678] = 3, + [62682] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(443), 1, sym_declaration_list, - [62688] = 3, + [62692] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1741), 1, sym_declaration_list, - [62698] = 2, + [62702] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2479), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62706] = 3, + [62710] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4536), 1, sym__new_line, ACTIONS(4538), 1, sym_heredoc_end, - [62716] = 3, + [62720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4540), 1, sym__new_line, ACTIONS(4542), 1, sym_heredoc_end, - [62726] = 3, + [62730] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(916), 1, sym_declaration_list, - [62736] = 3, + [62740] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(2129), 1, sym_declaration_list, - [62746] = 3, + [62750] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4454), 1, anon_sym_LPAREN, STATE(1716), 1, sym_formal_parameters, - [62756] = 3, + [62760] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(946), 1, sym_declaration_list, - [62766] = 2, + [62770] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4162), 2, anon_sym_COMMA, anon_sym_RBRACK, - [62774] = 3, + [62778] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3375), 1, anon_sym_LBRACE, STATE(945), 1, sym_declaration_list, - [62784] = 2, + [62788] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4544), 2, anon_sym_COMMA, anon_sym_RBRACK, - [62792] = 2, + [62796] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4547), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62800] = 3, + [62804] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4549), 1, anon_sym_SEMI, ACTIONS(4551), 1, sym__automatic_semicolon, - [62810] = 2, + [62814] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4553), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62818] = 2, + [62822] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4555), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62826] = 3, + [62830] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3531), 1, anon_sym_LBRACE, STATE(2069), 1, sym_enum_declaration_list, - [62836] = 2, + [62840] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3760), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62844] = 2, + [62848] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(1646), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62852] = 3, + [62856] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(942), 1, sym_compound_statement, - [62862] = 2, + [62866] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4557), 2, anon_sym_COMMA, anon_sym_RPAREN, - [62870] = 3, + [62874] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1089), 1, sym_declaration_list, - [62880] = 3, + [62884] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2374), 1, sym_variable_name, - [62890] = 2, + [62894] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3472), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62898] = 2, + [62902] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4559), 2, anon_sym_SEMI, anon_sym_COLON, - [62906] = 2, + [62910] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62914] = 3, + [62918] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2016), 1, sym_variable_name, - [62924] = 2, + [62928] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3935), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62932] = 3, + [62936] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(28), 1, sym_parenthesized_expression, - [62942] = 3, + [62946] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(929), 1, sym_compound_statement, - [62952] = 3, + [62956] = 3, ACTIONS(361), 1, anon_sym_COLON, ACTIONS(1522), 1, sym_comment, STATE(2525), 1, sym_colon_block, - [62962] = 3, + [62966] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4391), 1, anon_sym_LPAREN, STATE(2332), 1, sym_parenthesized_expression, - [62972] = 2, + [62976] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4563), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62980] = 3, + [62984] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(77), 1, sym_parenthesized_expression, - [62990] = 2, + [62994] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4565), 2, sym__automatic_semicolon, anon_sym_SEMI, - [62998] = 2, + [63002] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4567), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63006] = 3, + [63010] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1740), 1, sym_declaration_list, - [63016] = 2, + [63020] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4569), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63024] = 2, + [63028] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2461), 2, sym__automatic_semicolon, anon_sym_SEMI, - [63032] = 3, + [63036] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3531), 1, anon_sym_LBRACE, STATE(2038), 1, sym_enum_declaration_list, - [63042] = 3, + [63046] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3213), 1, anon_sym_LPAREN, STATE(1635), 1, sym_formal_parameters, - [63052] = 3, + [63056] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3418), 1, anon_sym_LBRACE, STATE(453), 1, sym_declaration_list, - [63062] = 3, + [63066] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(927), 1, sym_compound_statement, - [63072] = 3, + [63076] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(4383), 1, anon_sym_LPAREN, STATE(62), 1, sym_parenthesized_expression, - [63082] = 3, + [63086] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1120), 1, sym_compound_statement, - [63092] = 2, + [63096] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4285), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [63100] = 3, + [63104] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(2497), 1, anon_sym_RPAREN, ACTIONS(4385), 1, anon_sym_EQ, - [63110] = 3, + [63114] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3422), 1, anon_sym_LBRACE, STATE(1078), 1, sym_compound_statement, - [63120] = 3, + [63124] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4571), 1, anon_sym_SQUOTE, ACTIONS(4573), 1, sym_string_value, - [63130] = 3, + [63134] = 3, ACTIONS(383), 1, anon_sym_LBRACE, ACTIONS(1522), 1, sym_comment, STATE(2138), 1, sym_compound_statement, - [63140] = 3, + [63144] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(1711), 1, anon_sym_DOLLAR, STATE(2365), 1, sym_variable_name, - [63150] = 3, + [63154] = 3, ACTIONS(1522), 1, sym_comment, ACTIONS(3353), 1, anon_sym_LBRACE, STATE(1734), 1, sym_declaration_list, - [63160] = 2, + [63164] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4575), 1, anon_sym_EQ, - [63167] = 2, + [63171] = 2, ACTIONS(861), 1, anon_sym_SEMI, ACTIONS(1522), 1, sym_comment, - [63174] = 2, + [63178] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4577), 1, anon_sym_RPAREN, - [63181] = 2, + [63185] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4579), 1, sym_name, - [63188] = 2, + [63192] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4581), 1, aux_sym_if_statement_token2, - [63195] = 2, + [63199] = 2, ACTIONS(865), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [63202] = 2, + [63206] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4140), 1, anon_sym_RBRACE, - [63209] = 2, + [63213] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2497), 1, anon_sym_RPAREN, - [63216] = 2, + [63220] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4583), 1, anon_sym_EQ, - [63223] = 2, + [63227] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4585), 1, anon_sym_EQ_GT, - [63230] = 2, + [63234] = 2, ACTIONS(843), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [63237] = 2, + [63241] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4587), 1, anon_sym_RPAREN, - [63244] = 2, + [63248] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4589), 1, anon_sym_RPAREN, - [63251] = 2, + [63255] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4591), 1, anon_sym_COLON_COLON, - [63258] = 2, + [63262] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4287), 1, anon_sym_LBRACE, - [63265] = 2, + [63269] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4593), 1, sym_name, - [63272] = 2, + [63276] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4595), 1, anon_sym_RPAREN, - [63279] = 2, + [63283] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4597), 1, anon_sym_RPAREN, - [63286] = 2, + [63290] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4599), 1, anon_sym_EQ_GT, - [63293] = 2, + [63297] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2337), 1, anon_sym_STAR_STAR, - [63300] = 2, + [63304] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4601), 1, anon_sym_EQ_GT, - [63307] = 2, + [63311] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4385), 1, anon_sym_EQ, - [63314] = 2, + [63318] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4603), 1, anon_sym_COLON_COLON, - [63321] = 2, + [63325] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4605), 1, aux_sym_if_statement_token2, - [63328] = 2, + [63332] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4607), 1, sym_heredoc_end, - [63335] = 2, + [63339] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4609), 1, anon_sym_EQ_GT, - [63342] = 2, + [63346] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2271), 1, anon_sym_STAR_STAR, - [63349] = 2, + [63353] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4611), 1, anon_sym_EQ_GT, - [63356] = 2, + [63360] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4613), 1, anon_sym_RBRACK, - [63363] = 2, + [63367] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3640), 1, sym_name, - [63370] = 2, + [63374] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4615), 1, anon_sym_RPAREN, - [63377] = 2, + [63381] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4617), 1, sym_integer, - [63384] = 2, + [63388] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4619), 1, anon_sym_BSLASH, - [63391] = 2, + [63395] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4621), 1, sym_name, - [63398] = 2, + [63402] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4623), 1, anon_sym_RBRACK, - [63405] = 2, + [63409] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4625), 1, anon_sym_RPAREN, - [63412] = 2, + [63416] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4627), 1, sym_heredoc_end, - [63419] = 2, + [63423] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4629), 1, aux_sym_class_declaration_token1, - [63426] = 2, + [63430] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4631), 1, sym_name, - [63433] = 2, + [63437] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4633), 1, anon_sym_EQ_GT, - [63440] = 2, + [63444] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4635), 1, anon_sym_EQ_GT, - [63447] = 2, + [63451] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4637), 1, anon_sym_EQ, - [63454] = 2, + [63458] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4639), 1, sym_name, - [63461] = 2, + [63465] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4259), 1, anon_sym_LBRACE, - [63468] = 2, + [63472] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4641), 1, sym_name, - [63475] = 2, + [63479] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4643), 1, sym_heredoc_end, - [63482] = 2, + [63486] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4645), 1, anon_sym_RPAREN, - [63489] = 2, + [63493] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4088), 1, anon_sym_RPAREN, - [63496] = 2, + [63500] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4647), 1, anon_sym_DQUOTE2, - [63503] = 2, + [63507] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4649), 1, anon_sym_SQUOTE2, - [63510] = 2, + [63514] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4651), 1, sym_heredoc_end, - [63517] = 2, + [63521] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4653), 1, sym_name, - [63524] = 2, + [63528] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4655), 1, sym_name, - [63531] = 2, + [63535] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4657), 1, aux_sym_foreach_statement_token2, - [63538] = 2, + [63542] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4659), 1, anon_sym_RPAREN, - [63545] = 2, + [63549] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4082), 1, anon_sym_RBRACE, - [63552] = 2, + [63556] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4661), 1, anon_sym_RPAREN, - [63559] = 2, + [63563] = 2, ACTIONS(867), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [63566] = 2, + [63570] = 2, ACTIONS(885), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [63573] = 2, + [63577] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4663), 1, anon_sym_RPAREN, - [63580] = 2, + [63584] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4665), 1, anon_sym_BSLASH, - [63587] = 2, + [63591] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4667), 1, anon_sym_SEMI, - [63594] = 2, + [63598] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4009), 1, anon_sym_RBRACK, - [63601] = 2, + [63605] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4669), 1, anon_sym_RPAREN, - [63608] = 2, + [63612] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4671), 1, anon_sym_SEMI, - [63615] = 2, + [63619] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2485), 1, anon_sym_RPAREN, - [63622] = 2, + [63626] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4673), 1, aux_sym_while_statement_token2, - [63629] = 2, + [63633] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4675), 1, aux_sym_if_statement_token2, - [63636] = 2, + [63640] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4677), 1, anon_sym_LPAREN, - [63643] = 2, + [63647] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4679), 1, anon_sym_RPAREN, - [63650] = 2, + [63654] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2383), 1, anon_sym_STAR_STAR, - [63657] = 2, + [63661] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4681), 1, anon_sym_EQ, - [63664] = 2, + [63668] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2571), 1, anon_sym_RPAREN, - [63671] = 2, + [63675] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4065), 1, anon_sym_RPAREN, - [63678] = 2, + [63682] = 2, ACTIONS(883), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [63685] = 2, + [63689] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4683), 1, anon_sym_EQ_GT, - [63692] = 2, + [63696] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4685), 1, anon_sym_EQ_GT, - [63699] = 2, + [63703] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4687), 1, anon_sym_EQ, - [63706] = 2, + [63710] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4689), 1, anon_sym_COLON_COLON, - [63713] = 2, + [63717] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4691), 1, anon_sym_RPAREN, - [63720] = 2, + [63724] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4693), 1, aux_sym_if_statement_token2, - [63727] = 2, + [63731] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4695), 1, anon_sym_EQ, - [63734] = 2, + [63738] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4697), 1, sym_name, - [63741] = 2, + [63745] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4699), 1, aux_sym_if_statement_token2, - [63748] = 2, + [63752] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4701), 1, anon_sym_EQ_GT, - [63755] = 2, + [63759] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4703), 1, anon_sym_RBRACK, - [63762] = 2, + [63766] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4705), 1, anon_sym_RPAREN, - [63769] = 2, + [63773] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4707), 1, anon_sym_RPAREN, - [63776] = 2, + [63780] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4709), 1, sym_name, - [63783] = 2, + [63787] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4711), 1, sym_name, - [63790] = 2, + [63794] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4713), 1, anon_sym_LPAREN, - [63797] = 2, + [63801] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4715), 1, anon_sym_DQUOTE2, - [63804] = 2, + [63808] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4717), 1, anon_sym_SQUOTE, - [63811] = 2, + [63815] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4719), 1, sym_name, - [63818] = 2, + [63822] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4721), 1, anon_sym_SQUOTE2, - [63825] = 2, + [63829] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4723), 1, anon_sym_RPAREN, - [63832] = 2, + [63836] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4725), 1, anon_sym_RPAREN, - [63839] = 2, + [63843] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4727), 1, aux_sym_while_statement_token2, - [63846] = 2, + [63850] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4041), 1, anon_sym_RPAREN, - [63853] = 2, + [63857] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4729), 1, anon_sym_RPAREN, - [63860] = 2, + [63864] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4731), 1, sym_name, - [63867] = 2, + [63871] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4733), 1, sym_name, - [63874] = 2, + [63878] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4735), 1, anon_sym_BSLASH, - [63881] = 2, + [63885] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4347), 1, anon_sym_RPAREN, - [63888] = 2, + [63892] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4737), 1, sym_name, - [63895] = 2, + [63899] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4136), 1, sym_name, - [63902] = 2, + [63906] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4739), 1, anon_sym_BSLASH, - [63909] = 2, + [63913] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4741), 1, sym_name, - [63916] = 2, + [63920] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4027), 1, anon_sym_RPAREN, - [63923] = 2, + [63927] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4743), 1, sym_name, - [63930] = 2, + [63934] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4745), 1, ts_builtin_sym_end, - [63937] = 2, + [63941] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4747), 1, anon_sym_EQ_GT, - [63944] = 2, + [63948] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4749), 1, aux_sym__arrow_function_header_token1, - [63951] = 2, + [63955] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4023), 1, aux_sym_class_declaration_token1, - [63958] = 2, + [63962] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4751), 1, sym_name, - [63965] = 2, + [63969] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4753), 1, sym_name, - [63972] = 2, + [63976] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4755), 1, sym_name, - [63979] = 2, + [63983] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4757), 1, anon_sym_COLON_COLON, - [63986] = 2, + [63990] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4759), 1, anon_sym_EQ_GT, - [63993] = 2, + [63997] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4761), 1, aux_sym_class_declaration_token1, - [64000] = 2, + [64004] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4021), 1, aux_sym_class_declaration_token1, - [64007] = 2, + [64011] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4763), 1, aux_sym_namespace_use_declaration_token3, - [64014] = 2, + [64018] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4765), 1, anon_sym_BSLASH, - [64021] = 2, + [64025] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4767), 1, aux_sym_class_declaration_token1, - [64028] = 2, + [64032] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4769), 1, sym_name, - [64035] = 2, + [64039] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4031), 1, sym_name, - [64042] = 2, + [64046] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4771), 1, aux_sym_while_statement_token1, - [64049] = 2, + [64053] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4773), 1, sym_heredoc_start, - [64056] = 2, + [64060] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4775), 1, sym_heredoc_start, - [64063] = 2, + [64067] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4777), 1, aux_sym_class_declaration_token1, - [64070] = 2, + [64074] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4779), 1, anon_sym_RPAREN, - [64077] = 2, + [64081] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4781), 1, sym_name, - [64084] = 2, + [64088] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4019), 1, aux_sym_class_declaration_token1, - [64091] = 2, + [64095] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4783), 1, anon_sym_BSLASH, - [64098] = 2, + [64102] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4785), 1, anon_sym_BSLASH, - [64105] = 2, + [64109] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4271), 1, anon_sym_RPAREN, - [64112] = 2, + [64116] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4787), 1, sym_name, - [64119] = 2, + [64123] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4789), 1, anon_sym_RPAREN, - [64126] = 2, + [64130] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4791), 1, sym_heredoc_start, - [64133] = 2, + [64137] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4793), 1, sym_heredoc_start, - [64140] = 2, + [64144] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4795), 1, anon_sym_RPAREN, - [64147] = 2, + [64151] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4797), 1, aux_sym_class_declaration_token1, - [64154] = 2, + [64158] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4799), 1, anon_sym_BSLASH, - [64161] = 2, + [64165] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4801), 1, anon_sym_SQUOTE, - [64168] = 2, + [64172] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4803), 1, anon_sym_COLON_COLON, - [64175] = 2, + [64179] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2183), 1, anon_sym_STAR_STAR, - [64182] = 2, + [64186] = 2, ACTIONS(875), 1, anon_sym_SEMI, ACTIONS(1522), 1, sym_comment, - [64189] = 2, + [64193] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4805), 1, sym_name, - [64196] = 2, + [64200] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4426), 1, anon_sym_LPAREN, - [64203] = 2, + [64207] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4807), 1, anon_sym_RBRACK, - [64210] = 2, + [64214] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3998), 1, anon_sym_RPAREN, - [64217] = 2, + [64221] = 2, ACTIONS(873), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [64224] = 2, + [64228] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4809), 1, anon_sym_EQ, - [64231] = 2, + [64235] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4811), 1, anon_sym_SEMI, - [64238] = 2, + [64242] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2519), 1, anon_sym_RPAREN, - [64245] = 2, + [64249] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4813), 1, aux_sym_class_declaration_token1, - [64252] = 2, + [64256] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4815), 1, sym_name, - [64259] = 2, + [64263] = 2, ACTIONS(851), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [64266] = 2, + [64270] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4817), 1, sym_name, - [64273] = 2, + [64277] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4819), 1, anon_sym_RPAREN, - [64280] = 2, + [64284] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4821), 1, sym_name, - [64287] = 2, + [64291] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4823), 1, aux_sym_while_statement_token1, - [64294] = 2, + [64298] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4825), 1, sym_name, - [64301] = 2, + [64305] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4827), 1, anon_sym_COLON_COLON, - [64308] = 2, + [64312] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4829), 1, anon_sym_RPAREN, - [64315] = 2, + [64319] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4428), 1, anon_sym_RPAREN, - [64322] = 2, + [64326] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4831), 1, sym_name, - [64329] = 2, + [64333] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3992), 1, anon_sym_RPAREN, - [64336] = 2, + [64340] = 2, ACTIONS(355), 1, ts_builtin_sym_end, ACTIONS(1522), 1, sym_comment, - [64343] = 2, + [64347] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4295), 1, anon_sym_RPAREN, - [64350] = 2, + [64354] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3624), 1, anon_sym_BSLASH, - [64357] = 2, + [64361] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3283), 1, anon_sym_EQ, - [64364] = 2, + [64368] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4833), 1, anon_sym_COLON_COLON, - [64371] = 2, + [64375] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4835), 1, aux_sym_namespace_use_declaration_token3, - [64378] = 2, + [64382] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4837), 1, anon_sym_BSLASH, - [64385] = 2, + [64389] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4839), 1, anon_sym_RPAREN, - [64392] = 2, + [64396] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4059), 1, anon_sym_RBRACK, - [64399] = 2, + [64403] = 2, ACTIONS(869), 1, anon_sym_RPAREN, ACTIONS(1522), 1, sym_comment, - [64406] = 2, + [64410] = 2, ACTIONS(859), 1, anon_sym_SEMI, ACTIONS(1522), 1, sym_comment, - [64413] = 2, + [64417] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3618), 1, sym_name, - [64420] = 2, + [64424] = 2, ACTIONS(365), 1, ts_builtin_sym_end, ACTIONS(1522), 1, sym_comment, - [64427] = 2, + [64431] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4841), 1, anon_sym_COLON_COLON, - [64434] = 2, + [64438] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4843), 1, anon_sym_SEMI, - [64441] = 2, + [64445] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4845), 1, anon_sym_COLON_COLON, - [64448] = 2, + [64452] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4847), 1, anon_sym_EQ, - [64455] = 2, + [64459] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4849), 1, anon_sym_EQ_GT, - [64462] = 2, + [64466] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4314), 1, anon_sym_RPAREN, - [64469] = 2, + [64473] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4851), 1, aux_sym_namespace_use_declaration_token3, - [64476] = 2, + [64480] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4853), 1, aux_sym__arrow_function_header_token1, - [64483] = 2, + [64487] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(3980), 1, aux_sym_class_declaration_token1, - [64490] = 2, + [64494] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4855), 1, anon_sym_COLON_COLON, - [64497] = 2, + [64501] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4857), 1, anon_sym_BSLASH, - [64504] = 2, + [64508] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4859), 1, sym_name, - [64511] = 2, + [64515] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4861), 1, ts_builtin_sym_end, - [64518] = 2, + [64522] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4863), 1, sym_name, - [64525] = 2, + [64529] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4865), 1, anon_sym_COLON_COLON, - [64532] = 2, + [64536] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4867), 1, anon_sym_LPAREN, - [64539] = 2, + [64543] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4869), 1, sym_heredoc_end, - [64546] = 2, + [64550] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4871), 1, sym_heredoc_end, - [64553] = 2, + [64557] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4873), 1, anon_sym_LPAREN, - [64560] = 2, + [64564] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4875), 1, anon_sym_LPAREN, - [64567] = 2, + [64571] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4332), 1, anon_sym_RPAREN, - [64574] = 2, + [64578] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4877), 1, anon_sym_COLON_COLON, - [64581] = 2, + [64585] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4879), 1, anon_sym_LPAREN, - [64588] = 2, + [64592] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4881), 1, anon_sym_LPAREN, - [64595] = 2, + [64599] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4883), 1, anon_sym_EQ_GT, - [64602] = 2, + [64606] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4885), 1, anon_sym_RPAREN, - [64609] = 2, + [64613] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4887), 1, anon_sym_LPAREN, - [64616] = 2, + [64620] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4889), 1, aux_sym_foreach_statement_token2, - [64623] = 2, + [64627] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4891), 1, anon_sym_SEMI, - [64630] = 2, + [64634] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4893), 1, sym_name, - [64637] = 2, + [64641] = 2, ACTIONS(839), 1, anon_sym_SEMI, ACTIONS(1522), 1, sym_comment, - [64644] = 2, + [64648] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4362), 1, anon_sym_RPAREN, - [64651] = 2, + [64655] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4895), 1, anon_sym_LPAREN, - [64658] = 2, + [64662] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4897), 1, anon_sym_SEMI, - [64665] = 2, + [64669] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4899), 1, anon_sym_LPAREN, - [64672] = 2, + [64676] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4901), 1, anon_sym_LPAREN, - [64679] = 2, + [64683] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4903), 1, anon_sym_SEMI, - [64686] = 2, + [64690] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4905), 1, anon_sym_LPAREN, - [64693] = 2, + [64697] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4907), 1, anon_sym_LPAREN, - [64700] = 2, + [64704] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4909), 1, anon_sym_LPAREN, - [64707] = 2, + [64711] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4911), 1, sym_name, - [64714] = 2, + [64718] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4913), 1, sym_name, - [64721] = 2, + [64725] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4915), 1, sym_name, - [64728] = 2, + [64732] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4917), 1, anon_sym_SEMI, - [64735] = 2, + [64739] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4919), 1, sym_name, - [64742] = 2, + [64746] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4921), 1, anon_sym_LPAREN, - [64749] = 2, + [64753] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(2721), 1, anon_sym_RPAREN, - [64756] = 2, + [64760] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4923), 1, anon_sym_LPAREN, - [64763] = 2, + [64767] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4925), 1, anon_sym_LPAREN, - [64770] = 2, + [64774] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4927), 1, anon_sym_COLON_COLON, - [64777] = 2, + [64781] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4929), 1, anon_sym_LPAREN, - [64784] = 2, + [64788] = 2, ACTIONS(1522), 1, sym_comment, ACTIONS(4931), 1, @@ -128579,1499 +128581,1499 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1182)] = 35852, [SMALL_STATE(1183)] = 35927, [SMALL_STATE(1184)] = 36002, - [SMALL_STATE(1185)] = 36047, - [SMALL_STATE(1186)] = 36122, - [SMALL_STATE(1187)] = 36197, - [SMALL_STATE(1188)] = 36276, - [SMALL_STATE(1189)] = 36353, - [SMALL_STATE(1190)] = 36428, - [SMALL_STATE(1191)] = 36491, - [SMALL_STATE(1192)] = 36568, - [SMALL_STATE(1193)] = 36613, - [SMALL_STATE(1194)] = 36690, - [SMALL_STATE(1195)] = 36765, - [SMALL_STATE(1196)] = 36840, - [SMALL_STATE(1197)] = 36915, - [SMALL_STATE(1198)] = 36990, - [SMALL_STATE(1199)] = 37065, - [SMALL_STATE(1200)] = 37142, - [SMALL_STATE(1201)] = 37205, - [SMALL_STATE(1202)] = 37279, - [SMALL_STATE(1203)] = 37353, - [SMALL_STATE(1204)] = 37429, - [SMALL_STATE(1205)] = 37503, - [SMALL_STATE(1206)] = 37577, - [SMALL_STATE(1207)] = 37651, - [SMALL_STATE(1208)] = 37725, - [SMALL_STATE(1209)] = 37799, - [SMALL_STATE(1210)] = 37875, - [SMALL_STATE(1211)] = 37935, - [SMALL_STATE(1212)] = 38009, - [SMALL_STATE(1213)] = 38083, - [SMALL_STATE(1214)] = 38157, - [SMALL_STATE(1215)] = 38231, - [SMALL_STATE(1216)] = 38291, - [SMALL_STATE(1217)] = 38367, - [SMALL_STATE(1218)] = 38441, - [SMALL_STATE(1219)] = 38515, - [SMALL_STATE(1220)] = 38589, - [SMALL_STATE(1221)] = 38663, - [SMALL_STATE(1222)] = 38701, - [SMALL_STATE(1223)] = 38775, - [SMALL_STATE(1224)] = 38849, - [SMALL_STATE(1225)] = 38923, - [SMALL_STATE(1226)] = 38997, - [SMALL_STATE(1227)] = 39073, - [SMALL_STATE(1228)] = 39149, - [SMALL_STATE(1229)] = 39223, - [SMALL_STATE(1230)] = 39297, - [SMALL_STATE(1231)] = 39371, - [SMALL_STATE(1232)] = 39447, - [SMALL_STATE(1233)] = 39521, - [SMALL_STATE(1234)] = 39595, - [SMALL_STATE(1235)] = 39669, - [SMALL_STATE(1236)] = 39743, - [SMALL_STATE(1237)] = 39819, - [SMALL_STATE(1238)] = 39893, - [SMALL_STATE(1239)] = 39967, - [SMALL_STATE(1240)] = 40041, - [SMALL_STATE(1241)] = 40115, - [SMALL_STATE(1242)] = 40189, - [SMALL_STATE(1243)] = 40263, - [SMALL_STATE(1244)] = 40339, - [SMALL_STATE(1245)] = 40412, - [SMALL_STATE(1246)] = 40485, - [SMALL_STATE(1247)] = 40558, - [SMALL_STATE(1248)] = 40631, - [SMALL_STATE(1249)] = 40704, - [SMALL_STATE(1250)] = 40777, - [SMALL_STATE(1251)] = 40850, - [SMALL_STATE(1252)] = 40923, - [SMALL_STATE(1253)] = 40996, - [SMALL_STATE(1254)] = 41069, - [SMALL_STATE(1255)] = 41142, - [SMALL_STATE(1256)] = 41215, - [SMALL_STATE(1257)] = 41288, - [SMALL_STATE(1258)] = 41361, - [SMALL_STATE(1259)] = 41434, - [SMALL_STATE(1260)] = 41499, - [SMALL_STATE(1261)] = 41572, - [SMALL_STATE(1262)] = 41645, - [SMALL_STATE(1263)] = 41718, - [SMALL_STATE(1264)] = 41791, - [SMALL_STATE(1265)] = 41864, - [SMALL_STATE(1266)] = 41937, - [SMALL_STATE(1267)] = 42010, - [SMALL_STATE(1268)] = 42083, - [SMALL_STATE(1269)] = 42156, - [SMALL_STATE(1270)] = 42229, - [SMALL_STATE(1271)] = 42302, - [SMALL_STATE(1272)] = 42375, - [SMALL_STATE(1273)] = 42448, - [SMALL_STATE(1274)] = 42521, - [SMALL_STATE(1275)] = 42558, - [SMALL_STATE(1276)] = 42597, - [SMALL_STATE(1277)] = 42662, - [SMALL_STATE(1278)] = 42735, - [SMALL_STATE(1279)] = 42808, - [SMALL_STATE(1280)] = 42881, - [SMALL_STATE(1281)] = 42954, - [SMALL_STATE(1282)] = 43027, - [SMALL_STATE(1283)] = 43100, - [SMALL_STATE(1284)] = 43173, - [SMALL_STATE(1285)] = 43246, - [SMALL_STATE(1286)] = 43319, - [SMALL_STATE(1287)] = 43392, - [SMALL_STATE(1288)] = 43465, - [SMALL_STATE(1289)] = 43530, - [SMALL_STATE(1290)] = 43603, - [SMALL_STATE(1291)] = 43676, - [SMALL_STATE(1292)] = 43749, - [SMALL_STATE(1293)] = 43822, - [SMALL_STATE(1294)] = 43895, - [SMALL_STATE(1295)] = 43968, - [SMALL_STATE(1296)] = 44041, - [SMALL_STATE(1297)] = 44114, - [SMALL_STATE(1298)] = 44187, - [SMALL_STATE(1299)] = 44260, - [SMALL_STATE(1300)] = 44333, - [SMALL_STATE(1301)] = 44406, - [SMALL_STATE(1302)] = 44479, - [SMALL_STATE(1303)] = 44516, - [SMALL_STATE(1304)] = 44581, - [SMALL_STATE(1305)] = 44654, - [SMALL_STATE(1306)] = 44727, - [SMALL_STATE(1307)] = 44800, - [SMALL_STATE(1308)] = 44873, - [SMALL_STATE(1309)] = 44946, - [SMALL_STATE(1310)] = 45011, - [SMALL_STATE(1311)] = 45084, - [SMALL_STATE(1312)] = 45157, - [SMALL_STATE(1313)] = 45230, - [SMALL_STATE(1314)] = 45303, - [SMALL_STATE(1315)] = 45376, - [SMALL_STATE(1316)] = 45449, - [SMALL_STATE(1317)] = 45522, - [SMALL_STATE(1318)] = 45558, - [SMALL_STATE(1319)] = 45594, - [SMALL_STATE(1320)] = 45633, - [SMALL_STATE(1321)] = 45672, - [SMALL_STATE(1322)] = 45721, - [SMALL_STATE(1323)] = 45770, - [SMALL_STATE(1324)] = 45819, - [SMALL_STATE(1325)] = 45868, - [SMALL_STATE(1326)] = 45917, - [SMALL_STATE(1327)] = 45966, - [SMALL_STATE(1328)] = 45999, - [SMALL_STATE(1329)] = 46048, - [SMALL_STATE(1330)] = 46097, - [SMALL_STATE(1331)] = 46146, - [SMALL_STATE(1332)] = 46179, - [SMALL_STATE(1333)] = 46212, - [SMALL_STATE(1334)] = 46261, - [SMALL_STATE(1335)] = 46310, - [SMALL_STATE(1336)] = 46356, - [SMALL_STATE(1337)] = 46402, - [SMALL_STATE(1338)] = 46448, - [SMALL_STATE(1339)] = 46494, - [SMALL_STATE(1340)] = 46540, - [SMALL_STATE(1341)] = 46586, - [SMALL_STATE(1342)] = 46615, - [SMALL_STATE(1343)] = 46656, - [SMALL_STATE(1344)] = 46697, - [SMALL_STATE(1345)] = 46738, - [SMALL_STATE(1346)] = 46766, - [SMALL_STATE(1347)] = 46815, - [SMALL_STATE(1348)] = 46859, - [SMALL_STATE(1349)] = 46901, - [SMALL_STATE(1350)] = 46945, - [SMALL_STATE(1351)] = 46986, - [SMALL_STATE(1352)] = 47025, - [SMALL_STATE(1353)] = 47066, - [SMALL_STATE(1354)] = 47093, - [SMALL_STATE(1355)] = 47134, - [SMALL_STATE(1356)] = 47173, - [SMALL_STATE(1357)] = 47214, - [SMALL_STATE(1358)] = 47241, - [SMALL_STATE(1359)] = 47277, - [SMALL_STATE(1360)] = 47301, - [SMALL_STATE(1361)] = 47322, - [SMALL_STATE(1362)] = 47343, - [SMALL_STATE(1363)] = 47378, - [SMALL_STATE(1364)] = 47399, - [SMALL_STATE(1365)] = 47419, - [SMALL_STATE(1366)] = 47439, - [SMALL_STATE(1367)] = 47475, - [SMALL_STATE(1368)] = 47495, - [SMALL_STATE(1369)] = 47515, - [SMALL_STATE(1370)] = 47551, - [SMALL_STATE(1371)] = 47571, - [SMALL_STATE(1372)] = 47601, - [SMALL_STATE(1373)] = 47637, - [SMALL_STATE(1374)] = 47657, - [SMALL_STATE(1375)] = 47677, - [SMALL_STATE(1376)] = 47697, - [SMALL_STATE(1377)] = 47717, - [SMALL_STATE(1378)] = 47737, - [SMALL_STATE(1379)] = 47757, - [SMALL_STATE(1380)] = 47777, - [SMALL_STATE(1381)] = 47813, - [SMALL_STATE(1382)] = 47833, - [SMALL_STATE(1383)] = 47853, - [SMALL_STATE(1384)] = 47873, - [SMALL_STATE(1385)] = 47909, - [SMALL_STATE(1386)] = 47929, - [SMALL_STATE(1387)] = 47949, - [SMALL_STATE(1388)] = 47969, - [SMALL_STATE(1389)] = 47988, - [SMALL_STATE(1390)] = 48007, - [SMALL_STATE(1391)] = 48048, - [SMALL_STATE(1392)] = 48067, - [SMALL_STATE(1393)] = 48100, - [SMALL_STATE(1394)] = 48119, - [SMALL_STATE(1395)] = 48138, - [SMALL_STATE(1396)] = 48159, - [SMALL_STATE(1397)] = 48178, - [SMALL_STATE(1398)] = 48211, - [SMALL_STATE(1399)] = 48230, - [SMALL_STATE(1400)] = 48249, - [SMALL_STATE(1401)] = 48268, - [SMALL_STATE(1402)] = 48287, - [SMALL_STATE(1403)] = 48306, - [SMALL_STATE(1404)] = 48325, - [SMALL_STATE(1405)] = 48350, - [SMALL_STATE(1406)] = 48369, - [SMALL_STATE(1407)] = 48388, - [SMALL_STATE(1408)] = 48421, - [SMALL_STATE(1409)] = 48440, - [SMALL_STATE(1410)] = 48475, - [SMALL_STATE(1411)] = 48494, - [SMALL_STATE(1412)] = 48513, - [SMALL_STATE(1413)] = 48540, - [SMALL_STATE(1414)] = 48559, - [SMALL_STATE(1415)] = 48578, - [SMALL_STATE(1416)] = 48611, - [SMALL_STATE(1417)] = 48630, - [SMALL_STATE(1418)] = 48665, - [SMALL_STATE(1419)] = 48698, - [SMALL_STATE(1420)] = 48717, - [SMALL_STATE(1421)] = 48736, - [SMALL_STATE(1422)] = 48755, - [SMALL_STATE(1423)] = 48774, - [SMALL_STATE(1424)] = 48815, - [SMALL_STATE(1425)] = 48845, - [SMALL_STATE(1426)] = 48879, - [SMALL_STATE(1427)] = 48913, - [SMALL_STATE(1428)] = 48947, - [SMALL_STATE(1429)] = 48981, - [SMALL_STATE(1430)] = 49012, - [SMALL_STATE(1431)] = 49037, - [SMALL_STATE(1432)] = 49068, - [SMALL_STATE(1433)] = 49099, - [SMALL_STATE(1434)] = 49128, - [SMALL_STATE(1435)] = 49159, - [SMALL_STATE(1436)] = 49184, - [SMALL_STATE(1437)] = 49215, - [SMALL_STATE(1438)] = 49234, - [SMALL_STATE(1439)] = 49263, - [SMALL_STATE(1440)] = 49282, - [SMALL_STATE(1441)] = 49301, - [SMALL_STATE(1442)] = 49330, - [SMALL_STATE(1443)] = 49361, - [SMALL_STATE(1444)] = 49387, - [SMALL_STATE(1445)] = 49409, - [SMALL_STATE(1446)] = 49427, - [SMALL_STATE(1447)] = 49453, - [SMALL_STATE(1448)] = 49479, - [SMALL_STATE(1449)] = 49507, - [SMALL_STATE(1450)] = 49525, - [SMALL_STATE(1451)] = 49543, - [SMALL_STATE(1452)] = 49561, - [SMALL_STATE(1453)] = 49585, - [SMALL_STATE(1454)] = 49607, - [SMALL_STATE(1455)] = 49625, - [SMALL_STATE(1456)] = 49647, - [SMALL_STATE(1457)] = 49669, - [SMALL_STATE(1458)] = 49687, - [SMALL_STATE(1459)] = 49705, - [SMALL_STATE(1460)] = 49727, - [SMALL_STATE(1461)] = 49745, - [SMALL_STATE(1462)] = 49763, - [SMALL_STATE(1463)] = 49791, - [SMALL_STATE(1464)] = 49809, - [SMALL_STATE(1465)] = 49827, - [SMALL_STATE(1466)] = 49845, - [SMALL_STATE(1467)] = 49863, - [SMALL_STATE(1468)] = 49881, - [SMALL_STATE(1469)] = 49909, - [SMALL_STATE(1470)] = 49937, - [SMALL_STATE(1471)] = 49955, - [SMALL_STATE(1472)] = 49983, - [SMALL_STATE(1473)] = 50008, - [SMALL_STATE(1474)] = 50031, - [SMALL_STATE(1475)] = 50054, - [SMALL_STATE(1476)] = 50077, - [SMALL_STATE(1477)] = 50102, - [SMALL_STATE(1478)] = 50127, - [SMALL_STATE(1479)] = 50154, - [SMALL_STATE(1480)] = 50171, - [SMALL_STATE(1481)] = 50186, - [SMALL_STATE(1482)] = 50207, - [SMALL_STATE(1483)] = 50230, - [SMALL_STATE(1484)] = 50247, - [SMALL_STATE(1485)] = 50272, - [SMALL_STATE(1486)] = 50293, - [SMALL_STATE(1487)] = 50316, - [SMALL_STATE(1488)] = 50341, - [SMALL_STATE(1489)] = 50356, - [SMALL_STATE(1490)] = 50379, - [SMALL_STATE(1491)] = 50394, - [SMALL_STATE(1492)] = 50421, - [SMALL_STATE(1493)] = 50436, - [SMALL_STATE(1494)] = 50451, - [SMALL_STATE(1495)] = 50472, - [SMALL_STATE(1496)] = 50495, - [SMALL_STATE(1497)] = 50518, - [SMALL_STATE(1498)] = 50543, - [SMALL_STATE(1499)] = 50566, - [SMALL_STATE(1500)] = 50587, - [SMALL_STATE(1501)] = 50610, - [SMALL_STATE(1502)] = 50633, - [SMALL_STATE(1503)] = 50654, - [SMALL_STATE(1504)] = 50677, - [SMALL_STATE(1505)] = 50702, - [SMALL_STATE(1506)] = 50725, - [SMALL_STATE(1507)] = 50746, - [SMALL_STATE(1508)] = 50769, - [SMALL_STATE(1509)] = 50792, - [SMALL_STATE(1510)] = 50815, - [SMALL_STATE(1511)] = 50836, - [SMALL_STATE(1512)] = 50859, - [SMALL_STATE(1513)] = 50882, - [SMALL_STATE(1514)] = 50903, - [SMALL_STATE(1515)] = 50924, - [SMALL_STATE(1516)] = 50947, - [SMALL_STATE(1517)] = 50968, - [SMALL_STATE(1518)] = 50993, - [SMALL_STATE(1519)] = 51014, - [SMALL_STATE(1520)] = 51035, - [SMALL_STATE(1521)] = 51056, - [SMALL_STATE(1522)] = 51081, - [SMALL_STATE(1523)] = 51104, - [SMALL_STATE(1524)] = 51127, - [SMALL_STATE(1525)] = 51150, - [SMALL_STATE(1526)] = 51175, - [SMALL_STATE(1527)] = 51200, - [SMALL_STATE(1528)] = 51223, - [SMALL_STATE(1529)] = 51246, - [SMALL_STATE(1530)] = 51271, - [SMALL_STATE(1531)] = 51294, - [SMALL_STATE(1532)] = 51317, - [SMALL_STATE(1533)] = 51340, - [SMALL_STATE(1534)] = 51363, - [SMALL_STATE(1535)] = 51386, - [SMALL_STATE(1536)] = 51411, - [SMALL_STATE(1537)] = 51431, - [SMALL_STATE(1538)] = 51459, - [SMALL_STATE(1539)] = 51487, - [SMALL_STATE(1540)] = 51515, - [SMALL_STATE(1541)] = 51543, - [SMALL_STATE(1542)] = 51567, - [SMALL_STATE(1543)] = 51587, - [SMALL_STATE(1544)] = 51607, - [SMALL_STATE(1545)] = 51633, - [SMALL_STATE(1546)] = 51655, - [SMALL_STATE(1547)] = 51683, - [SMALL_STATE(1548)] = 51705, - [SMALL_STATE(1549)] = 51725, - [SMALL_STATE(1550)] = 51753, - [SMALL_STATE(1551)] = 51778, - [SMALL_STATE(1552)] = 51795, - [SMALL_STATE(1553)] = 51816, - [SMALL_STATE(1554)] = 51835, - [SMALL_STATE(1555)] = 51858, - [SMALL_STATE(1556)] = 51875, - [SMALL_STATE(1557)] = 51890, - [SMALL_STATE(1558)] = 51907, - [SMALL_STATE(1559)] = 51922, - [SMALL_STATE(1560)] = 51937, - [SMALL_STATE(1561)] = 51956, - [SMALL_STATE(1562)] = 51973, - [SMALL_STATE(1563)] = 51990, - [SMALL_STATE(1564)] = 52007, - [SMALL_STATE(1565)] = 52024, - [SMALL_STATE(1566)] = 52041, - [SMALL_STATE(1567)] = 52058, - [SMALL_STATE(1568)] = 52075, - [SMALL_STATE(1569)] = 52092, - [SMALL_STATE(1570)] = 52113, - [SMALL_STATE(1571)] = 52128, - [SMALL_STATE(1572)] = 52147, - [SMALL_STATE(1573)] = 52168, - [SMALL_STATE(1574)] = 52187, - [SMALL_STATE(1575)] = 52202, - [SMALL_STATE(1576)] = 52219, - [SMALL_STATE(1577)] = 52234, - [SMALL_STATE(1578)] = 52249, - [SMALL_STATE(1579)] = 52264, - [SMALL_STATE(1580)] = 52279, - [SMALL_STATE(1581)] = 52296, - [SMALL_STATE(1582)] = 52311, - [SMALL_STATE(1583)] = 52326, - [SMALL_STATE(1584)] = 52341, - [SMALL_STATE(1585)] = 52358, - [SMALL_STATE(1586)] = 52375, - [SMALL_STATE(1587)] = 52392, - [SMALL_STATE(1588)] = 52413, - [SMALL_STATE(1589)] = 52430, - [SMALL_STATE(1590)] = 52445, - [SMALL_STATE(1591)] = 52462, - [SMALL_STATE(1592)] = 52476, - [SMALL_STATE(1593)] = 52498, - [SMALL_STATE(1594)] = 52520, - [SMALL_STATE(1595)] = 52540, - [SMALL_STATE(1596)] = 52562, - [SMALL_STATE(1597)] = 52584, - [SMALL_STATE(1598)] = 52604, - [SMALL_STATE(1599)] = 52626, - [SMALL_STATE(1600)] = 52644, - [SMALL_STATE(1601)] = 52662, - [SMALL_STATE(1602)] = 52680, - [SMALL_STATE(1603)] = 52702, - [SMALL_STATE(1604)] = 52724, - [SMALL_STATE(1605)] = 52746, - [SMALL_STATE(1606)] = 52760, - [SMALL_STATE(1607)] = 52782, - [SMALL_STATE(1608)] = 52804, - [SMALL_STATE(1609)] = 52824, - [SMALL_STATE(1610)] = 52846, - [SMALL_STATE(1611)] = 52864, - [SMALL_STATE(1612)] = 52882, - [SMALL_STATE(1613)] = 52904, - [SMALL_STATE(1614)] = 52926, - [SMALL_STATE(1615)] = 52944, - [SMALL_STATE(1616)] = 52966, - [SMALL_STATE(1617)] = 52984, - [SMALL_STATE(1618)] = 53006, - [SMALL_STATE(1619)] = 53028, - [SMALL_STATE(1620)] = 53050, - [SMALL_STATE(1621)] = 53072, - [SMALL_STATE(1622)] = 53094, - [SMALL_STATE(1623)] = 53112, - [SMALL_STATE(1624)] = 53134, - [SMALL_STATE(1625)] = 53148, - [SMALL_STATE(1626)] = 53170, - [SMALL_STATE(1627)] = 53192, - [SMALL_STATE(1628)] = 53206, - [SMALL_STATE(1629)] = 53224, - [SMALL_STATE(1630)] = 53238, - [SMALL_STATE(1631)] = 53260, - [SMALL_STATE(1632)] = 53280, - [SMALL_STATE(1633)] = 53302, - [SMALL_STATE(1634)] = 53324, - [SMALL_STATE(1635)] = 53346, - [SMALL_STATE(1636)] = 53368, - [SMALL_STATE(1637)] = 53390, - [SMALL_STATE(1638)] = 53412, - [SMALL_STATE(1639)] = 53434, - [SMALL_STATE(1640)] = 53456, - [SMALL_STATE(1641)] = 53478, - [SMALL_STATE(1642)] = 53496, - [SMALL_STATE(1643)] = 53518, - [SMALL_STATE(1644)] = 53536, - [SMALL_STATE(1645)] = 53554, - [SMALL_STATE(1646)] = 53568, - [SMALL_STATE(1647)] = 53590, - [SMALL_STATE(1648)] = 53606, - [SMALL_STATE(1649)] = 53620, - [SMALL_STATE(1650)] = 53642, - [SMALL_STATE(1651)] = 53664, - [SMALL_STATE(1652)] = 53686, - [SMALL_STATE(1653)] = 53700, - [SMALL_STATE(1654)] = 53722, - [SMALL_STATE(1655)] = 53744, - [SMALL_STATE(1656)] = 53762, - [SMALL_STATE(1657)] = 53780, - [SMALL_STATE(1658)] = 53798, - [SMALL_STATE(1659)] = 53820, - [SMALL_STATE(1660)] = 53831, - [SMALL_STATE(1661)] = 53846, - [SMALL_STATE(1662)] = 53865, - [SMALL_STATE(1663)] = 53882, - [SMALL_STATE(1664)] = 53897, - [SMALL_STATE(1665)] = 53916, - [SMALL_STATE(1666)] = 53931, - [SMALL_STATE(1667)] = 53950, - [SMALL_STATE(1668)] = 53967, - [SMALL_STATE(1669)] = 53982, - [SMALL_STATE(1670)] = 54001, - [SMALL_STATE(1671)] = 54020, - [SMALL_STATE(1672)] = 54035, - [SMALL_STATE(1673)] = 54052, - [SMALL_STATE(1674)] = 54067, - [SMALL_STATE(1675)] = 54082, - [SMALL_STATE(1676)] = 54101, - [SMALL_STATE(1677)] = 54116, - [SMALL_STATE(1678)] = 54135, - [SMALL_STATE(1679)] = 54152, - [SMALL_STATE(1680)] = 54167, - [SMALL_STATE(1681)] = 54182, - [SMALL_STATE(1682)] = 54197, - [SMALL_STATE(1683)] = 54212, - [SMALL_STATE(1684)] = 54227, - [SMALL_STATE(1685)] = 54242, - [SMALL_STATE(1686)] = 54257, - [SMALL_STATE(1687)] = 54272, - [SMALL_STATE(1688)] = 54285, - [SMALL_STATE(1689)] = 54300, - [SMALL_STATE(1690)] = 54317, - [SMALL_STATE(1691)] = 54334, - [SMALL_STATE(1692)] = 54349, - [SMALL_STATE(1693)] = 54366, - [SMALL_STATE(1694)] = 54385, - [SMALL_STATE(1695)] = 54402, - [SMALL_STATE(1696)] = 54415, - [SMALL_STATE(1697)] = 54430, - [SMALL_STATE(1698)] = 54449, - [SMALL_STATE(1699)] = 54464, - [SMALL_STATE(1700)] = 54479, - [SMALL_STATE(1701)] = 54494, - [SMALL_STATE(1702)] = 54509, - [SMALL_STATE(1703)] = 54526, - [SMALL_STATE(1704)] = 54543, - [SMALL_STATE(1705)] = 54562, - [SMALL_STATE(1706)] = 54577, - [SMALL_STATE(1707)] = 54592, - [SMALL_STATE(1708)] = 54607, - [SMALL_STATE(1709)] = 54622, - [SMALL_STATE(1710)] = 54639, - [SMALL_STATE(1711)] = 54654, - [SMALL_STATE(1712)] = 54669, - [SMALL_STATE(1713)] = 54686, - [SMALL_STATE(1714)] = 54701, - [SMALL_STATE(1715)] = 54720, - [SMALL_STATE(1716)] = 54731, - [SMALL_STATE(1717)] = 54746, - [SMALL_STATE(1718)] = 54765, - [SMALL_STATE(1719)] = 54784, - [SMALL_STATE(1720)] = 54797, - [SMALL_STATE(1721)] = 54812, - [SMALL_STATE(1722)] = 54831, - [SMALL_STATE(1723)] = 54846, - [SMALL_STATE(1724)] = 54865, - [SMALL_STATE(1725)] = 54884, - [SMALL_STATE(1726)] = 54899, - [SMALL_STATE(1727)] = 54914, - [SMALL_STATE(1728)] = 54931, - [SMALL_STATE(1729)] = 54950, - [SMALL_STATE(1730)] = 54965, - [SMALL_STATE(1731)] = 54984, - [SMALL_STATE(1732)] = 55003, - [SMALL_STATE(1733)] = 55020, - [SMALL_STATE(1734)] = 55039, - [SMALL_STATE(1735)] = 55054, - [SMALL_STATE(1736)] = 55069, - [SMALL_STATE(1737)] = 55084, - [SMALL_STATE(1738)] = 55099, - [SMALL_STATE(1739)] = 55116, - [SMALL_STATE(1740)] = 55131, - [SMALL_STATE(1741)] = 55146, - [SMALL_STATE(1742)] = 55161, - [SMALL_STATE(1743)] = 55176, - [SMALL_STATE(1744)] = 55191, - [SMALL_STATE(1745)] = 55206, - [SMALL_STATE(1746)] = 55225, - [SMALL_STATE(1747)] = 55236, - [SMALL_STATE(1748)] = 55251, - [SMALL_STATE(1749)] = 55268, - [SMALL_STATE(1750)] = 55285, - [SMALL_STATE(1751)] = 55300, - [SMALL_STATE(1752)] = 55319, - [SMALL_STATE(1753)] = 55336, - [SMALL_STATE(1754)] = 55350, - [SMALL_STATE(1755)] = 55364, - [SMALL_STATE(1756)] = 55378, - [SMALL_STATE(1757)] = 55394, - [SMALL_STATE(1758)] = 55408, - [SMALL_STATE(1759)] = 55422, - [SMALL_STATE(1760)] = 55438, - [SMALL_STATE(1761)] = 55448, - [SMALL_STATE(1762)] = 55458, - [SMALL_STATE(1763)] = 55474, - [SMALL_STATE(1764)] = 55484, - [SMALL_STATE(1765)] = 55498, - [SMALL_STATE(1766)] = 55512, - [SMALL_STATE(1767)] = 55526, - [SMALL_STATE(1768)] = 55542, - [SMALL_STATE(1769)] = 55558, - [SMALL_STATE(1770)] = 55574, - [SMALL_STATE(1771)] = 55590, - [SMALL_STATE(1772)] = 55604, - [SMALL_STATE(1773)] = 55618, - [SMALL_STATE(1774)] = 55630, - [SMALL_STATE(1775)] = 55644, - [SMALL_STATE(1776)] = 55660, - [SMALL_STATE(1777)] = 55670, - [SMALL_STATE(1778)] = 55684, - [SMALL_STATE(1779)] = 55700, - [SMALL_STATE(1780)] = 55712, - [SMALL_STATE(1781)] = 55726, - [SMALL_STATE(1782)] = 55742, - [SMALL_STATE(1783)] = 55754, - [SMALL_STATE(1784)] = 55764, - [SMALL_STATE(1785)] = 55780, - [SMALL_STATE(1786)] = 55794, - [SMALL_STATE(1787)] = 55810, - [SMALL_STATE(1788)] = 55826, - [SMALL_STATE(1789)] = 55840, - [SMALL_STATE(1790)] = 55854, - [SMALL_STATE(1791)] = 55868, - [SMALL_STATE(1792)] = 55884, - [SMALL_STATE(1793)] = 55898, - [SMALL_STATE(1794)] = 55914, - [SMALL_STATE(1795)] = 55928, - [SMALL_STATE(1796)] = 55938, - [SMALL_STATE(1797)] = 55954, - [SMALL_STATE(1798)] = 55968, - [SMALL_STATE(1799)] = 55984, - [SMALL_STATE(1800)] = 56000, - [SMALL_STATE(1801)] = 56016, - [SMALL_STATE(1802)] = 56032, - [SMALL_STATE(1803)] = 56042, - [SMALL_STATE(1804)] = 56052, - [SMALL_STATE(1805)] = 56066, - [SMALL_STATE(1806)] = 56080, - [SMALL_STATE(1807)] = 56094, - [SMALL_STATE(1808)] = 56104, - [SMALL_STATE(1809)] = 56118, - [SMALL_STATE(1810)] = 56132, - [SMALL_STATE(1811)] = 56148, - [SMALL_STATE(1812)] = 56164, - [SMALL_STATE(1813)] = 56178, - [SMALL_STATE(1814)] = 56194, - [SMALL_STATE(1815)] = 56208, - [SMALL_STATE(1816)] = 56222, - [SMALL_STATE(1817)] = 56238, - [SMALL_STATE(1818)] = 56252, - [SMALL_STATE(1819)] = 56268, - [SMALL_STATE(1820)] = 56282, - [SMALL_STATE(1821)] = 56292, - [SMALL_STATE(1822)] = 56306, - [SMALL_STATE(1823)] = 56322, - [SMALL_STATE(1824)] = 56338, - [SMALL_STATE(1825)] = 56352, - [SMALL_STATE(1826)] = 56366, - [SMALL_STATE(1827)] = 56382, - [SMALL_STATE(1828)] = 56396, - [SMALL_STATE(1829)] = 56412, - [SMALL_STATE(1830)] = 56426, - [SMALL_STATE(1831)] = 56440, - [SMALL_STATE(1832)] = 56454, - [SMALL_STATE(1833)] = 56468, - [SMALL_STATE(1834)] = 56484, - [SMALL_STATE(1835)] = 56500, - [SMALL_STATE(1836)] = 56514, - [SMALL_STATE(1837)] = 56530, - [SMALL_STATE(1838)] = 56546, - [SMALL_STATE(1839)] = 56562, - [SMALL_STATE(1840)] = 56578, - [SMALL_STATE(1841)] = 56594, - [SMALL_STATE(1842)] = 56610, - [SMALL_STATE(1843)] = 56626, - [SMALL_STATE(1844)] = 56642, - [SMALL_STATE(1845)] = 56652, - [SMALL_STATE(1846)] = 56668, - [SMALL_STATE(1847)] = 56682, - [SMALL_STATE(1848)] = 56694, - [SMALL_STATE(1849)] = 56706, - [SMALL_STATE(1850)] = 56720, - [SMALL_STATE(1851)] = 56736, - [SMALL_STATE(1852)] = 56752, - [SMALL_STATE(1853)] = 56768, - [SMALL_STATE(1854)] = 56782, - [SMALL_STATE(1855)] = 56798, - [SMALL_STATE(1856)] = 56814, - [SMALL_STATE(1857)] = 56830, - [SMALL_STATE(1858)] = 56844, - [SMALL_STATE(1859)] = 56854, - [SMALL_STATE(1860)] = 56870, - [SMALL_STATE(1861)] = 56880, - [SMALL_STATE(1862)] = 56896, - [SMALL_STATE(1863)] = 56906, - [SMALL_STATE(1864)] = 56920, - [SMALL_STATE(1865)] = 56934, - [SMALL_STATE(1866)] = 56950, - [SMALL_STATE(1867)] = 56966, - [SMALL_STATE(1868)] = 56980, - [SMALL_STATE(1869)] = 56990, - [SMALL_STATE(1870)] = 57004, - [SMALL_STATE(1871)] = 57020, - [SMALL_STATE(1872)] = 57034, - [SMALL_STATE(1873)] = 57044, - [SMALL_STATE(1874)] = 57060, - [SMALL_STATE(1875)] = 57074, - [SMALL_STATE(1876)] = 57088, - [SMALL_STATE(1877)] = 57102, - [SMALL_STATE(1878)] = 57116, - [SMALL_STATE(1879)] = 57130, - [SMALL_STATE(1880)] = 57146, - [SMALL_STATE(1881)] = 57160, - [SMALL_STATE(1882)] = 57170, - [SMALL_STATE(1883)] = 57184, - [SMALL_STATE(1884)] = 57198, - [SMALL_STATE(1885)] = 57214, - [SMALL_STATE(1886)] = 57230, - [SMALL_STATE(1887)] = 57244, - [SMALL_STATE(1888)] = 57258, - [SMALL_STATE(1889)] = 57274, - [SMALL_STATE(1890)] = 57284, - [SMALL_STATE(1891)] = 57298, - [SMALL_STATE(1892)] = 57312, - [SMALL_STATE(1893)] = 57328, - [SMALL_STATE(1894)] = 57344, - [SMALL_STATE(1895)] = 57358, - [SMALL_STATE(1896)] = 57372, - [SMALL_STATE(1897)] = 57386, - [SMALL_STATE(1898)] = 57400, - [SMALL_STATE(1899)] = 57414, - [SMALL_STATE(1900)] = 57424, - [SMALL_STATE(1901)] = 57440, - [SMALL_STATE(1902)] = 57456, - [SMALL_STATE(1903)] = 57470, - [SMALL_STATE(1904)] = 57484, - [SMALL_STATE(1905)] = 57498, - [SMALL_STATE(1906)] = 57514, - [SMALL_STATE(1907)] = 57527, - [SMALL_STATE(1908)] = 57540, - [SMALL_STATE(1909)] = 57551, - [SMALL_STATE(1910)] = 57564, - [SMALL_STATE(1911)] = 57577, - [SMALL_STATE(1912)] = 57590, - [SMALL_STATE(1913)] = 57603, - [SMALL_STATE(1914)] = 57616, - [SMALL_STATE(1915)] = 57629, - [SMALL_STATE(1916)] = 57642, - [SMALL_STATE(1917)] = 57653, - [SMALL_STATE(1918)] = 57666, - [SMALL_STATE(1919)] = 57679, - [SMALL_STATE(1920)] = 57692, - [SMALL_STATE(1921)] = 57705, - [SMALL_STATE(1922)] = 57718, - [SMALL_STATE(1923)] = 57731, - [SMALL_STATE(1924)] = 57744, - [SMALL_STATE(1925)] = 57757, - [SMALL_STATE(1926)] = 57770, - [SMALL_STATE(1927)] = 57783, - [SMALL_STATE(1928)] = 57796, - [SMALL_STATE(1929)] = 57809, - [SMALL_STATE(1930)] = 57820, - [SMALL_STATE(1931)] = 57829, - [SMALL_STATE(1932)] = 57842, - [SMALL_STATE(1933)] = 57855, - [SMALL_STATE(1934)] = 57868, - [SMALL_STATE(1935)] = 57881, - [SMALL_STATE(1936)] = 57892, - [SMALL_STATE(1937)] = 57905, - [SMALL_STATE(1938)] = 57918, - [SMALL_STATE(1939)] = 57931, - [SMALL_STATE(1940)] = 57944, - [SMALL_STATE(1941)] = 57957, - [SMALL_STATE(1942)] = 57970, - [SMALL_STATE(1943)] = 57983, - [SMALL_STATE(1944)] = 57996, - [SMALL_STATE(1945)] = 58009, - [SMALL_STATE(1946)] = 58022, - [SMALL_STATE(1947)] = 58035, - [SMALL_STATE(1948)] = 58048, - [SMALL_STATE(1949)] = 58061, - [SMALL_STATE(1950)] = 58074, - [SMALL_STATE(1951)] = 58087, - [SMALL_STATE(1952)] = 58100, - [SMALL_STATE(1953)] = 58113, - [SMALL_STATE(1954)] = 58126, - [SMALL_STATE(1955)] = 58139, - [SMALL_STATE(1956)] = 58148, - [SMALL_STATE(1957)] = 58157, - [SMALL_STATE(1958)] = 58170, - [SMALL_STATE(1959)] = 58179, - [SMALL_STATE(1960)] = 58188, - [SMALL_STATE(1961)] = 58197, - [SMALL_STATE(1962)] = 58208, - [SMALL_STATE(1963)] = 58219, - [SMALL_STATE(1964)] = 58232, - [SMALL_STATE(1965)] = 58245, - [SMALL_STATE(1966)] = 58258, - [SMALL_STATE(1967)] = 58271, - [SMALL_STATE(1968)] = 58284, - [SMALL_STATE(1969)] = 58295, - [SMALL_STATE(1970)] = 58308, - [SMALL_STATE(1971)] = 58319, - [SMALL_STATE(1972)] = 58332, - [SMALL_STATE(1973)] = 58341, - [SMALL_STATE(1974)] = 58354, - [SMALL_STATE(1975)] = 58365, - [SMALL_STATE(1976)] = 58376, - [SMALL_STATE(1977)] = 58389, - [SMALL_STATE(1978)] = 58400, - [SMALL_STATE(1979)] = 58413, - [SMALL_STATE(1980)] = 58424, - [SMALL_STATE(1981)] = 58435, - [SMALL_STATE(1982)] = 58446, - [SMALL_STATE(1983)] = 58459, - [SMALL_STATE(1984)] = 58470, - [SMALL_STATE(1985)] = 58483, - [SMALL_STATE(1986)] = 58494, - [SMALL_STATE(1987)] = 58505, - [SMALL_STATE(1988)] = 58514, - [SMALL_STATE(1989)] = 58527, - [SMALL_STATE(1990)] = 58536, - [SMALL_STATE(1991)] = 58547, - [SMALL_STATE(1992)] = 58560, - [SMALL_STATE(1993)] = 58571, - [SMALL_STATE(1994)] = 58584, - [SMALL_STATE(1995)] = 58595, - [SMALL_STATE(1996)] = 58606, - [SMALL_STATE(1997)] = 58619, - [SMALL_STATE(1998)] = 58628, - [SMALL_STATE(1999)] = 58641, - [SMALL_STATE(2000)] = 58654, - [SMALL_STATE(2001)] = 58665, - [SMALL_STATE(2002)] = 58678, - [SMALL_STATE(2003)] = 58691, - [SMALL_STATE(2004)] = 58702, - [SMALL_STATE(2005)] = 58715, - [SMALL_STATE(2006)] = 58726, - [SMALL_STATE(2007)] = 58739, - [SMALL_STATE(2008)] = 58750, - [SMALL_STATE(2009)] = 58763, - [SMALL_STATE(2010)] = 58774, - [SMALL_STATE(2011)] = 58787, - [SMALL_STATE(2012)] = 58798, - [SMALL_STATE(2013)] = 58811, - [SMALL_STATE(2014)] = 58822, - [SMALL_STATE(2015)] = 58833, - [SMALL_STATE(2016)] = 58844, - [SMALL_STATE(2017)] = 58855, - [SMALL_STATE(2018)] = 58866, - [SMALL_STATE(2019)] = 58879, - [SMALL_STATE(2020)] = 58890, - [SMALL_STATE(2021)] = 58901, - [SMALL_STATE(2022)] = 58912, - [SMALL_STATE(2023)] = 58923, - [SMALL_STATE(2024)] = 58936, - [SMALL_STATE(2025)] = 58947, - [SMALL_STATE(2026)] = 58958, - [SMALL_STATE(2027)] = 58969, - [SMALL_STATE(2028)] = 58980, - [SMALL_STATE(2029)] = 58993, - [SMALL_STATE(2030)] = 59006, - [SMALL_STATE(2031)] = 59017, - [SMALL_STATE(2032)] = 59030, - [SMALL_STATE(2033)] = 59043, - [SMALL_STATE(2034)] = 59054, - [SMALL_STATE(2035)] = 59067, - [SMALL_STATE(2036)] = 59080, - [SMALL_STATE(2037)] = 59093, - [SMALL_STATE(2038)] = 59106, - [SMALL_STATE(2039)] = 59117, - [SMALL_STATE(2040)] = 59130, - [SMALL_STATE(2041)] = 59143, - [SMALL_STATE(2042)] = 59156, - [SMALL_STATE(2043)] = 59169, - [SMALL_STATE(2044)] = 59180, - [SMALL_STATE(2045)] = 59189, - [SMALL_STATE(2046)] = 59198, - [SMALL_STATE(2047)] = 59211, - [SMALL_STATE(2048)] = 59222, - [SMALL_STATE(2049)] = 59235, - [SMALL_STATE(2050)] = 59248, - [SMALL_STATE(2051)] = 59261, - [SMALL_STATE(2052)] = 59274, - [SMALL_STATE(2053)] = 59285, - [SMALL_STATE(2054)] = 59296, - [SMALL_STATE(2055)] = 59307, - [SMALL_STATE(2056)] = 59318, - [SMALL_STATE(2057)] = 59329, - [SMALL_STATE(2058)] = 59340, - [SMALL_STATE(2059)] = 59351, - [SMALL_STATE(2060)] = 59362, - [SMALL_STATE(2061)] = 59373, - [SMALL_STATE(2062)] = 59384, - [SMALL_STATE(2063)] = 59395, - [SMALL_STATE(2064)] = 59406, - [SMALL_STATE(2065)] = 59417, - [SMALL_STATE(2066)] = 59428, - [SMALL_STATE(2067)] = 59439, - [SMALL_STATE(2068)] = 59450, - [SMALL_STATE(2069)] = 59461, - [SMALL_STATE(2070)] = 59472, - [SMALL_STATE(2071)] = 59483, - [SMALL_STATE(2072)] = 59494, - [SMALL_STATE(2073)] = 59505, - [SMALL_STATE(2074)] = 59516, - [SMALL_STATE(2075)] = 59527, - [SMALL_STATE(2076)] = 59540, - [SMALL_STATE(2077)] = 59551, - [SMALL_STATE(2078)] = 59562, - [SMALL_STATE(2079)] = 59575, - [SMALL_STATE(2080)] = 59588, - [SMALL_STATE(2081)] = 59599, - [SMALL_STATE(2082)] = 59610, - [SMALL_STATE(2083)] = 59621, - [SMALL_STATE(2084)] = 59632, - [SMALL_STATE(2085)] = 59643, - [SMALL_STATE(2086)] = 59654, - [SMALL_STATE(2087)] = 59665, - [SMALL_STATE(2088)] = 59676, - [SMALL_STATE(2089)] = 59687, - [SMALL_STATE(2090)] = 59698, - [SMALL_STATE(2091)] = 59709, - [SMALL_STATE(2092)] = 59720, - [SMALL_STATE(2093)] = 59731, - [SMALL_STATE(2094)] = 59740, - [SMALL_STATE(2095)] = 59751, - [SMALL_STATE(2096)] = 59762, - [SMALL_STATE(2097)] = 59773, - [SMALL_STATE(2098)] = 59784, - [SMALL_STATE(2099)] = 59795, - [SMALL_STATE(2100)] = 59806, - [SMALL_STATE(2101)] = 59819, - [SMALL_STATE(2102)] = 59830, - [SMALL_STATE(2103)] = 59843, - [SMALL_STATE(2104)] = 59854, - [SMALL_STATE(2105)] = 59865, - [SMALL_STATE(2106)] = 59876, - [SMALL_STATE(2107)] = 59887, - [SMALL_STATE(2108)] = 59898, - [SMALL_STATE(2109)] = 59909, - [SMALL_STATE(2110)] = 59920, - [SMALL_STATE(2111)] = 59933, - [SMALL_STATE(2112)] = 59944, - [SMALL_STATE(2113)] = 59953, - [SMALL_STATE(2114)] = 59962, - [SMALL_STATE(2115)] = 59975, - [SMALL_STATE(2116)] = 59986, - [SMALL_STATE(2117)] = 59997, - [SMALL_STATE(2118)] = 60008, - [SMALL_STATE(2119)] = 60021, - [SMALL_STATE(2120)] = 60032, - [SMALL_STATE(2121)] = 60043, - [SMALL_STATE(2122)] = 60054, - [SMALL_STATE(2123)] = 60065, - [SMALL_STATE(2124)] = 60076, - [SMALL_STATE(2125)] = 60087, - [SMALL_STATE(2126)] = 60098, - [SMALL_STATE(2127)] = 60109, - [SMALL_STATE(2128)] = 60120, - [SMALL_STATE(2129)] = 60131, - [SMALL_STATE(2130)] = 60142, - [SMALL_STATE(2131)] = 60153, - [SMALL_STATE(2132)] = 60166, - [SMALL_STATE(2133)] = 60177, - [SMALL_STATE(2134)] = 60188, - [SMALL_STATE(2135)] = 60199, - [SMALL_STATE(2136)] = 60210, - [SMALL_STATE(2137)] = 60221, - [SMALL_STATE(2138)] = 60232, - [SMALL_STATE(2139)] = 60243, - [SMALL_STATE(2140)] = 60252, - [SMALL_STATE(2141)] = 60263, - [SMALL_STATE(2142)] = 60274, - [SMALL_STATE(2143)] = 60285, - [SMALL_STATE(2144)] = 60294, - [SMALL_STATE(2145)] = 60307, - [SMALL_STATE(2146)] = 60316, - [SMALL_STATE(2147)] = 60327, - [SMALL_STATE(2148)] = 60338, - [SMALL_STATE(2149)] = 60349, - [SMALL_STATE(2150)] = 60358, - [SMALL_STATE(2151)] = 60371, - [SMALL_STATE(2152)] = 60382, - [SMALL_STATE(2153)] = 60393, - [SMALL_STATE(2154)] = 60406, - [SMALL_STATE(2155)] = 60419, - [SMALL_STATE(2156)] = 60432, - [SMALL_STATE(2157)] = 60441, - [SMALL_STATE(2158)] = 60454, - [SMALL_STATE(2159)] = 60465, - [SMALL_STATE(2160)] = 60474, - [SMALL_STATE(2161)] = 60487, - [SMALL_STATE(2162)] = 60500, - [SMALL_STATE(2163)] = 60513, - [SMALL_STATE(2164)] = 60526, - [SMALL_STATE(2165)] = 60535, - [SMALL_STATE(2166)] = 60548, - [SMALL_STATE(2167)] = 60557, - [SMALL_STATE(2168)] = 60570, - [SMALL_STATE(2169)] = 60583, - [SMALL_STATE(2170)] = 60592, - [SMALL_STATE(2171)] = 60601, - [SMALL_STATE(2172)] = 60614, - [SMALL_STATE(2173)] = 60625, - [SMALL_STATE(2174)] = 60638, - [SMALL_STATE(2175)] = 60648, - [SMALL_STATE(2176)] = 60656, - [SMALL_STATE(2177)] = 60664, - [SMALL_STATE(2178)] = 60672, - [SMALL_STATE(2179)] = 60682, - [SMALL_STATE(2180)] = 60692, - [SMALL_STATE(2181)] = 60702, - [SMALL_STATE(2182)] = 60710, - [SMALL_STATE(2183)] = 60718, - [SMALL_STATE(2184)] = 60728, - [SMALL_STATE(2185)] = 60738, - [SMALL_STATE(2186)] = 60746, - [SMALL_STATE(2187)] = 60756, - [SMALL_STATE(2188)] = 60764, - [SMALL_STATE(2189)] = 60772, - [SMALL_STATE(2190)] = 60780, - [SMALL_STATE(2191)] = 60790, - [SMALL_STATE(2192)] = 60800, - [SMALL_STATE(2193)] = 60810, - [SMALL_STATE(2194)] = 60820, - [SMALL_STATE(2195)] = 60828, - [SMALL_STATE(2196)] = 60836, - [SMALL_STATE(2197)] = 60846, - [SMALL_STATE(2198)] = 60854, - [SMALL_STATE(2199)] = 60864, - [SMALL_STATE(2200)] = 60874, - [SMALL_STATE(2201)] = 60884, - [SMALL_STATE(2202)] = 60894, - [SMALL_STATE(2203)] = 60904, - [SMALL_STATE(2204)] = 60914, - [SMALL_STATE(2205)] = 60924, - [SMALL_STATE(2206)] = 60934, - [SMALL_STATE(2207)] = 60944, - [SMALL_STATE(2208)] = 60954, - [SMALL_STATE(2209)] = 60964, - [SMALL_STATE(2210)] = 60972, - [SMALL_STATE(2211)] = 60980, - [SMALL_STATE(2212)] = 60988, - [SMALL_STATE(2213)] = 60998, - [SMALL_STATE(2214)] = 61008, - [SMALL_STATE(2215)] = 61016, - [SMALL_STATE(2216)] = 61024, - [SMALL_STATE(2217)] = 61034, - [SMALL_STATE(2218)] = 61044, - [SMALL_STATE(2219)] = 61052, - [SMALL_STATE(2220)] = 61060, - [SMALL_STATE(2221)] = 61068, - [SMALL_STATE(2222)] = 61076, - [SMALL_STATE(2223)] = 61084, - [SMALL_STATE(2224)] = 61092, - [SMALL_STATE(2225)] = 61102, - [SMALL_STATE(2226)] = 61110, - [SMALL_STATE(2227)] = 61120, - [SMALL_STATE(2228)] = 61130, - [SMALL_STATE(2229)] = 61138, - [SMALL_STATE(2230)] = 61148, - [SMALL_STATE(2231)] = 61156, - [SMALL_STATE(2232)] = 61166, - [SMALL_STATE(2233)] = 61176, - [SMALL_STATE(2234)] = 61186, - [SMALL_STATE(2235)] = 61196, - [SMALL_STATE(2236)] = 61204, - [SMALL_STATE(2237)] = 61212, - [SMALL_STATE(2238)] = 61222, - [SMALL_STATE(2239)] = 61232, - [SMALL_STATE(2240)] = 61242, - [SMALL_STATE(2241)] = 61250, - [SMALL_STATE(2242)] = 61258, - [SMALL_STATE(2243)] = 61268, - [SMALL_STATE(2244)] = 61276, - [SMALL_STATE(2245)] = 61284, - [SMALL_STATE(2246)] = 61292, - [SMALL_STATE(2247)] = 61302, - [SMALL_STATE(2248)] = 61312, - [SMALL_STATE(2249)] = 61322, - [SMALL_STATE(2250)] = 61332, - [SMALL_STATE(2251)] = 61340, - [SMALL_STATE(2252)] = 61350, - [SMALL_STATE(2253)] = 61360, - [SMALL_STATE(2254)] = 61370, - [SMALL_STATE(2255)] = 61380, - [SMALL_STATE(2256)] = 61390, - [SMALL_STATE(2257)] = 61400, - [SMALL_STATE(2258)] = 61410, - [SMALL_STATE(2259)] = 61418, - [SMALL_STATE(2260)] = 61428, - [SMALL_STATE(2261)] = 61438, - [SMALL_STATE(2262)] = 61446, - [SMALL_STATE(2263)] = 61456, - [SMALL_STATE(2264)] = 61466, - [SMALL_STATE(2265)] = 61474, - [SMALL_STATE(2266)] = 61482, - [SMALL_STATE(2267)] = 61492, - [SMALL_STATE(2268)] = 61502, - [SMALL_STATE(2269)] = 61510, - [SMALL_STATE(2270)] = 61518, - [SMALL_STATE(2271)] = 61526, - [SMALL_STATE(2272)] = 61536, - [SMALL_STATE(2273)] = 61546, - [SMALL_STATE(2274)] = 61556, - [SMALL_STATE(2275)] = 61566, - [SMALL_STATE(2276)] = 61576, - [SMALL_STATE(2277)] = 61586, - [SMALL_STATE(2278)] = 61596, - [SMALL_STATE(2279)] = 61606, - [SMALL_STATE(2280)] = 61616, - [SMALL_STATE(2281)] = 61626, - [SMALL_STATE(2282)] = 61636, - [SMALL_STATE(2283)] = 61646, - [SMALL_STATE(2284)] = 61656, - [SMALL_STATE(2285)] = 61666, - [SMALL_STATE(2286)] = 61674, - [SMALL_STATE(2287)] = 61684, - [SMALL_STATE(2288)] = 61694, - [SMALL_STATE(2289)] = 61704, - [SMALL_STATE(2290)] = 61714, - [SMALL_STATE(2291)] = 61724, - [SMALL_STATE(2292)] = 61734, - [SMALL_STATE(2293)] = 61744, - [SMALL_STATE(2294)] = 61754, - [SMALL_STATE(2295)] = 61762, - [SMALL_STATE(2296)] = 61772, - [SMALL_STATE(2297)] = 61780, - [SMALL_STATE(2298)] = 61790, - [SMALL_STATE(2299)] = 61800, - [SMALL_STATE(2300)] = 61810, - [SMALL_STATE(2301)] = 61818, - [SMALL_STATE(2302)] = 61828, - [SMALL_STATE(2303)] = 61838, - [SMALL_STATE(2304)] = 61846, - [SMALL_STATE(2305)] = 61856, - [SMALL_STATE(2306)] = 61864, - [SMALL_STATE(2307)] = 61872, - [SMALL_STATE(2308)] = 61880, - [SMALL_STATE(2309)] = 61888, - [SMALL_STATE(2310)] = 61898, - [SMALL_STATE(2311)] = 61906, - [SMALL_STATE(2312)] = 61916, - [SMALL_STATE(2313)] = 61926, - [SMALL_STATE(2314)] = 61936, - [SMALL_STATE(2315)] = 61944, - [SMALL_STATE(2316)] = 61954, - [SMALL_STATE(2317)] = 61964, - [SMALL_STATE(2318)] = 61974, - [SMALL_STATE(2319)] = 61982, - [SMALL_STATE(2320)] = 61992, - [SMALL_STATE(2321)] = 62000, - [SMALL_STATE(2322)] = 62010, - [SMALL_STATE(2323)] = 62020, - [SMALL_STATE(2324)] = 62030, - [SMALL_STATE(2325)] = 62038, - [SMALL_STATE(2326)] = 62046, - [SMALL_STATE(2327)] = 62056, - [SMALL_STATE(2328)] = 62066, - [SMALL_STATE(2329)] = 62074, - [SMALL_STATE(2330)] = 62084, - [SMALL_STATE(2331)] = 62094, - [SMALL_STATE(2332)] = 62102, - [SMALL_STATE(2333)] = 62112, - [SMALL_STATE(2334)] = 62122, - [SMALL_STATE(2335)] = 62132, - [SMALL_STATE(2336)] = 62142, - [SMALL_STATE(2337)] = 62152, - [SMALL_STATE(2338)] = 62162, - [SMALL_STATE(2339)] = 62170, - [SMALL_STATE(2340)] = 62180, - [SMALL_STATE(2341)] = 62188, - [SMALL_STATE(2342)] = 62198, - [SMALL_STATE(2343)] = 62206, - [SMALL_STATE(2344)] = 62216, - [SMALL_STATE(2345)] = 62226, - [SMALL_STATE(2346)] = 62234, - [SMALL_STATE(2347)] = 62244, - [SMALL_STATE(2348)] = 62254, - [SMALL_STATE(2349)] = 62262, - [SMALL_STATE(2350)] = 62270, - [SMALL_STATE(2351)] = 62280, - [SMALL_STATE(2352)] = 62290, - [SMALL_STATE(2353)] = 62298, - [SMALL_STATE(2354)] = 62306, - [SMALL_STATE(2355)] = 62316, - [SMALL_STATE(2356)] = 62326, - [SMALL_STATE(2357)] = 62336, - [SMALL_STATE(2358)] = 62346, - [SMALL_STATE(2359)] = 62356, - [SMALL_STATE(2360)] = 62366, - [SMALL_STATE(2361)] = 62376, - [SMALL_STATE(2362)] = 62386, - [SMALL_STATE(2363)] = 62396, - [SMALL_STATE(2364)] = 62404, - [SMALL_STATE(2365)] = 62414, - [SMALL_STATE(2366)] = 62422, - [SMALL_STATE(2367)] = 62430, - [SMALL_STATE(2368)] = 62440, - [SMALL_STATE(2369)] = 62448, - [SMALL_STATE(2370)] = 62458, - [SMALL_STATE(2371)] = 62466, - [SMALL_STATE(2372)] = 62476, - [SMALL_STATE(2373)] = 62486, - [SMALL_STATE(2374)] = 62496, - [SMALL_STATE(2375)] = 62504, - [SMALL_STATE(2376)] = 62514, - [SMALL_STATE(2377)] = 62524, - [SMALL_STATE(2378)] = 62532, - [SMALL_STATE(2379)] = 62542, - [SMALL_STATE(2380)] = 62552, - [SMALL_STATE(2381)] = 62562, - [SMALL_STATE(2382)] = 62572, - [SMALL_STATE(2383)] = 62582, - [SMALL_STATE(2384)] = 62592, - [SMALL_STATE(2385)] = 62600, - [SMALL_STATE(2386)] = 62610, - [SMALL_STATE(2387)] = 62620, - [SMALL_STATE(2388)] = 62630, - [SMALL_STATE(2389)] = 62638, - [SMALL_STATE(2390)] = 62648, - [SMALL_STATE(2391)] = 62658, - [SMALL_STATE(2392)] = 62668, - [SMALL_STATE(2393)] = 62678, - [SMALL_STATE(2394)] = 62688, - [SMALL_STATE(2395)] = 62698, - [SMALL_STATE(2396)] = 62706, - [SMALL_STATE(2397)] = 62716, - [SMALL_STATE(2398)] = 62726, - [SMALL_STATE(2399)] = 62736, - [SMALL_STATE(2400)] = 62746, - [SMALL_STATE(2401)] = 62756, - [SMALL_STATE(2402)] = 62766, - [SMALL_STATE(2403)] = 62774, - [SMALL_STATE(2404)] = 62784, - [SMALL_STATE(2405)] = 62792, - [SMALL_STATE(2406)] = 62800, - [SMALL_STATE(2407)] = 62810, - [SMALL_STATE(2408)] = 62818, - [SMALL_STATE(2409)] = 62826, - [SMALL_STATE(2410)] = 62836, - [SMALL_STATE(2411)] = 62844, - [SMALL_STATE(2412)] = 62852, - [SMALL_STATE(2413)] = 62862, - [SMALL_STATE(2414)] = 62870, - [SMALL_STATE(2415)] = 62880, - [SMALL_STATE(2416)] = 62890, - [SMALL_STATE(2417)] = 62898, - [SMALL_STATE(2418)] = 62906, - [SMALL_STATE(2419)] = 62914, - [SMALL_STATE(2420)] = 62924, - [SMALL_STATE(2421)] = 62932, - [SMALL_STATE(2422)] = 62942, - [SMALL_STATE(2423)] = 62952, - [SMALL_STATE(2424)] = 62962, - [SMALL_STATE(2425)] = 62972, - [SMALL_STATE(2426)] = 62980, - [SMALL_STATE(2427)] = 62990, - [SMALL_STATE(2428)] = 62998, - [SMALL_STATE(2429)] = 63006, - [SMALL_STATE(2430)] = 63016, - [SMALL_STATE(2431)] = 63024, - [SMALL_STATE(2432)] = 63032, - [SMALL_STATE(2433)] = 63042, - [SMALL_STATE(2434)] = 63052, - [SMALL_STATE(2435)] = 63062, - [SMALL_STATE(2436)] = 63072, - [SMALL_STATE(2437)] = 63082, - [SMALL_STATE(2438)] = 63092, - [SMALL_STATE(2439)] = 63100, - [SMALL_STATE(2440)] = 63110, - [SMALL_STATE(2441)] = 63120, - [SMALL_STATE(2442)] = 63130, - [SMALL_STATE(2443)] = 63140, - [SMALL_STATE(2444)] = 63150, - [SMALL_STATE(2445)] = 63160, - [SMALL_STATE(2446)] = 63167, - [SMALL_STATE(2447)] = 63174, - [SMALL_STATE(2448)] = 63181, - [SMALL_STATE(2449)] = 63188, - [SMALL_STATE(2450)] = 63195, - [SMALL_STATE(2451)] = 63202, - [SMALL_STATE(2452)] = 63209, - [SMALL_STATE(2453)] = 63216, - [SMALL_STATE(2454)] = 63223, - [SMALL_STATE(2455)] = 63230, - [SMALL_STATE(2456)] = 63237, - [SMALL_STATE(2457)] = 63244, - [SMALL_STATE(2458)] = 63251, - [SMALL_STATE(2459)] = 63258, - [SMALL_STATE(2460)] = 63265, - [SMALL_STATE(2461)] = 63272, - [SMALL_STATE(2462)] = 63279, - [SMALL_STATE(2463)] = 63286, - [SMALL_STATE(2464)] = 63293, - [SMALL_STATE(2465)] = 63300, - [SMALL_STATE(2466)] = 63307, - [SMALL_STATE(2467)] = 63314, - [SMALL_STATE(2468)] = 63321, - [SMALL_STATE(2469)] = 63328, - [SMALL_STATE(2470)] = 63335, - [SMALL_STATE(2471)] = 63342, - [SMALL_STATE(2472)] = 63349, - [SMALL_STATE(2473)] = 63356, - [SMALL_STATE(2474)] = 63363, - [SMALL_STATE(2475)] = 63370, - [SMALL_STATE(2476)] = 63377, - [SMALL_STATE(2477)] = 63384, - [SMALL_STATE(2478)] = 63391, - [SMALL_STATE(2479)] = 63398, - [SMALL_STATE(2480)] = 63405, - [SMALL_STATE(2481)] = 63412, - [SMALL_STATE(2482)] = 63419, - [SMALL_STATE(2483)] = 63426, - [SMALL_STATE(2484)] = 63433, - [SMALL_STATE(2485)] = 63440, - [SMALL_STATE(2486)] = 63447, - [SMALL_STATE(2487)] = 63454, - [SMALL_STATE(2488)] = 63461, - [SMALL_STATE(2489)] = 63468, - [SMALL_STATE(2490)] = 63475, - [SMALL_STATE(2491)] = 63482, - [SMALL_STATE(2492)] = 63489, - [SMALL_STATE(2493)] = 63496, - [SMALL_STATE(2494)] = 63503, - [SMALL_STATE(2495)] = 63510, - [SMALL_STATE(2496)] = 63517, - [SMALL_STATE(2497)] = 63524, - [SMALL_STATE(2498)] = 63531, - [SMALL_STATE(2499)] = 63538, - [SMALL_STATE(2500)] = 63545, - [SMALL_STATE(2501)] = 63552, - [SMALL_STATE(2502)] = 63559, - [SMALL_STATE(2503)] = 63566, - [SMALL_STATE(2504)] = 63573, - [SMALL_STATE(2505)] = 63580, - [SMALL_STATE(2506)] = 63587, - [SMALL_STATE(2507)] = 63594, - [SMALL_STATE(2508)] = 63601, - [SMALL_STATE(2509)] = 63608, - [SMALL_STATE(2510)] = 63615, - [SMALL_STATE(2511)] = 63622, - [SMALL_STATE(2512)] = 63629, - [SMALL_STATE(2513)] = 63636, - [SMALL_STATE(2514)] = 63643, - [SMALL_STATE(2515)] = 63650, - [SMALL_STATE(2516)] = 63657, - [SMALL_STATE(2517)] = 63664, - [SMALL_STATE(2518)] = 63671, - [SMALL_STATE(2519)] = 63678, - [SMALL_STATE(2520)] = 63685, - [SMALL_STATE(2521)] = 63692, - [SMALL_STATE(2522)] = 63699, - [SMALL_STATE(2523)] = 63706, - [SMALL_STATE(2524)] = 63713, - [SMALL_STATE(2525)] = 63720, - [SMALL_STATE(2526)] = 63727, - [SMALL_STATE(2527)] = 63734, - [SMALL_STATE(2528)] = 63741, - [SMALL_STATE(2529)] = 63748, - [SMALL_STATE(2530)] = 63755, - [SMALL_STATE(2531)] = 63762, - [SMALL_STATE(2532)] = 63769, - [SMALL_STATE(2533)] = 63776, - [SMALL_STATE(2534)] = 63783, - [SMALL_STATE(2535)] = 63790, - [SMALL_STATE(2536)] = 63797, - [SMALL_STATE(2537)] = 63804, - [SMALL_STATE(2538)] = 63811, - [SMALL_STATE(2539)] = 63818, - [SMALL_STATE(2540)] = 63825, - [SMALL_STATE(2541)] = 63832, - [SMALL_STATE(2542)] = 63839, - [SMALL_STATE(2543)] = 63846, - [SMALL_STATE(2544)] = 63853, - [SMALL_STATE(2545)] = 63860, - [SMALL_STATE(2546)] = 63867, - [SMALL_STATE(2547)] = 63874, - [SMALL_STATE(2548)] = 63881, - [SMALL_STATE(2549)] = 63888, - [SMALL_STATE(2550)] = 63895, - [SMALL_STATE(2551)] = 63902, - [SMALL_STATE(2552)] = 63909, - [SMALL_STATE(2553)] = 63916, - [SMALL_STATE(2554)] = 63923, - [SMALL_STATE(2555)] = 63930, - [SMALL_STATE(2556)] = 63937, - [SMALL_STATE(2557)] = 63944, - [SMALL_STATE(2558)] = 63951, - [SMALL_STATE(2559)] = 63958, - [SMALL_STATE(2560)] = 63965, - [SMALL_STATE(2561)] = 63972, - [SMALL_STATE(2562)] = 63979, - [SMALL_STATE(2563)] = 63986, - [SMALL_STATE(2564)] = 63993, - [SMALL_STATE(2565)] = 64000, - [SMALL_STATE(2566)] = 64007, - [SMALL_STATE(2567)] = 64014, - [SMALL_STATE(2568)] = 64021, - [SMALL_STATE(2569)] = 64028, - [SMALL_STATE(2570)] = 64035, - [SMALL_STATE(2571)] = 64042, - [SMALL_STATE(2572)] = 64049, - [SMALL_STATE(2573)] = 64056, - [SMALL_STATE(2574)] = 64063, - [SMALL_STATE(2575)] = 64070, - [SMALL_STATE(2576)] = 64077, - [SMALL_STATE(2577)] = 64084, - [SMALL_STATE(2578)] = 64091, - [SMALL_STATE(2579)] = 64098, - [SMALL_STATE(2580)] = 64105, - [SMALL_STATE(2581)] = 64112, - [SMALL_STATE(2582)] = 64119, - [SMALL_STATE(2583)] = 64126, - [SMALL_STATE(2584)] = 64133, - [SMALL_STATE(2585)] = 64140, - [SMALL_STATE(2586)] = 64147, - [SMALL_STATE(2587)] = 64154, - [SMALL_STATE(2588)] = 64161, - [SMALL_STATE(2589)] = 64168, - [SMALL_STATE(2590)] = 64175, - [SMALL_STATE(2591)] = 64182, - [SMALL_STATE(2592)] = 64189, - [SMALL_STATE(2593)] = 64196, - [SMALL_STATE(2594)] = 64203, - [SMALL_STATE(2595)] = 64210, - [SMALL_STATE(2596)] = 64217, - [SMALL_STATE(2597)] = 64224, - [SMALL_STATE(2598)] = 64231, - [SMALL_STATE(2599)] = 64238, - [SMALL_STATE(2600)] = 64245, - [SMALL_STATE(2601)] = 64252, - [SMALL_STATE(2602)] = 64259, - [SMALL_STATE(2603)] = 64266, - [SMALL_STATE(2604)] = 64273, - [SMALL_STATE(2605)] = 64280, - [SMALL_STATE(2606)] = 64287, - [SMALL_STATE(2607)] = 64294, - [SMALL_STATE(2608)] = 64301, - [SMALL_STATE(2609)] = 64308, - [SMALL_STATE(2610)] = 64315, - [SMALL_STATE(2611)] = 64322, - [SMALL_STATE(2612)] = 64329, - [SMALL_STATE(2613)] = 64336, - [SMALL_STATE(2614)] = 64343, - [SMALL_STATE(2615)] = 64350, - [SMALL_STATE(2616)] = 64357, - [SMALL_STATE(2617)] = 64364, - [SMALL_STATE(2618)] = 64371, - [SMALL_STATE(2619)] = 64378, - [SMALL_STATE(2620)] = 64385, - [SMALL_STATE(2621)] = 64392, - [SMALL_STATE(2622)] = 64399, - [SMALL_STATE(2623)] = 64406, - [SMALL_STATE(2624)] = 64413, - [SMALL_STATE(2625)] = 64420, - [SMALL_STATE(2626)] = 64427, - [SMALL_STATE(2627)] = 64434, - [SMALL_STATE(2628)] = 64441, - [SMALL_STATE(2629)] = 64448, - [SMALL_STATE(2630)] = 64455, - [SMALL_STATE(2631)] = 64462, - [SMALL_STATE(2632)] = 64469, - [SMALL_STATE(2633)] = 64476, - [SMALL_STATE(2634)] = 64483, - [SMALL_STATE(2635)] = 64490, - [SMALL_STATE(2636)] = 64497, - [SMALL_STATE(2637)] = 64504, - [SMALL_STATE(2638)] = 64511, - [SMALL_STATE(2639)] = 64518, - [SMALL_STATE(2640)] = 64525, - [SMALL_STATE(2641)] = 64532, - [SMALL_STATE(2642)] = 64539, - [SMALL_STATE(2643)] = 64546, - [SMALL_STATE(2644)] = 64553, - [SMALL_STATE(2645)] = 64560, - [SMALL_STATE(2646)] = 64567, - [SMALL_STATE(2647)] = 64574, - [SMALL_STATE(2648)] = 64581, - [SMALL_STATE(2649)] = 64588, - [SMALL_STATE(2650)] = 64595, - [SMALL_STATE(2651)] = 64602, - [SMALL_STATE(2652)] = 64609, - [SMALL_STATE(2653)] = 64616, - [SMALL_STATE(2654)] = 64623, - [SMALL_STATE(2655)] = 64630, - [SMALL_STATE(2656)] = 64637, - [SMALL_STATE(2657)] = 64644, - [SMALL_STATE(2658)] = 64651, - [SMALL_STATE(2659)] = 64658, - [SMALL_STATE(2660)] = 64665, - [SMALL_STATE(2661)] = 64672, - [SMALL_STATE(2662)] = 64679, - [SMALL_STATE(2663)] = 64686, - [SMALL_STATE(2664)] = 64693, - [SMALL_STATE(2665)] = 64700, - [SMALL_STATE(2666)] = 64707, - [SMALL_STATE(2667)] = 64714, - [SMALL_STATE(2668)] = 64721, - [SMALL_STATE(2669)] = 64728, - [SMALL_STATE(2670)] = 64735, - [SMALL_STATE(2671)] = 64742, - [SMALL_STATE(2672)] = 64749, - [SMALL_STATE(2673)] = 64756, - [SMALL_STATE(2674)] = 64763, - [SMALL_STATE(2675)] = 64770, - [SMALL_STATE(2676)] = 64777, - [SMALL_STATE(2677)] = 64784, + [SMALL_STATE(1185)] = 36049, + [SMALL_STATE(1186)] = 36124, + [SMALL_STATE(1187)] = 36199, + [SMALL_STATE(1188)] = 36278, + [SMALL_STATE(1189)] = 36355, + [SMALL_STATE(1190)] = 36430, + [SMALL_STATE(1191)] = 36493, + [SMALL_STATE(1192)] = 36570, + [SMALL_STATE(1193)] = 36617, + [SMALL_STATE(1194)] = 36694, + [SMALL_STATE(1195)] = 36769, + [SMALL_STATE(1196)] = 36844, + [SMALL_STATE(1197)] = 36919, + [SMALL_STATE(1198)] = 36994, + [SMALL_STATE(1199)] = 37069, + [SMALL_STATE(1200)] = 37146, + [SMALL_STATE(1201)] = 37209, + [SMALL_STATE(1202)] = 37283, + [SMALL_STATE(1203)] = 37357, + [SMALL_STATE(1204)] = 37433, + [SMALL_STATE(1205)] = 37507, + [SMALL_STATE(1206)] = 37581, + [SMALL_STATE(1207)] = 37655, + [SMALL_STATE(1208)] = 37729, + [SMALL_STATE(1209)] = 37803, + [SMALL_STATE(1210)] = 37879, + [SMALL_STATE(1211)] = 37939, + [SMALL_STATE(1212)] = 38013, + [SMALL_STATE(1213)] = 38087, + [SMALL_STATE(1214)] = 38161, + [SMALL_STATE(1215)] = 38235, + [SMALL_STATE(1216)] = 38295, + [SMALL_STATE(1217)] = 38371, + [SMALL_STATE(1218)] = 38445, + [SMALL_STATE(1219)] = 38519, + [SMALL_STATE(1220)] = 38593, + [SMALL_STATE(1221)] = 38667, + [SMALL_STATE(1222)] = 38705, + [SMALL_STATE(1223)] = 38779, + [SMALL_STATE(1224)] = 38853, + [SMALL_STATE(1225)] = 38927, + [SMALL_STATE(1226)] = 39001, + [SMALL_STATE(1227)] = 39077, + [SMALL_STATE(1228)] = 39153, + [SMALL_STATE(1229)] = 39227, + [SMALL_STATE(1230)] = 39301, + [SMALL_STATE(1231)] = 39375, + [SMALL_STATE(1232)] = 39451, + [SMALL_STATE(1233)] = 39525, + [SMALL_STATE(1234)] = 39599, + [SMALL_STATE(1235)] = 39673, + [SMALL_STATE(1236)] = 39747, + [SMALL_STATE(1237)] = 39823, + [SMALL_STATE(1238)] = 39897, + [SMALL_STATE(1239)] = 39971, + [SMALL_STATE(1240)] = 40045, + [SMALL_STATE(1241)] = 40119, + [SMALL_STATE(1242)] = 40193, + [SMALL_STATE(1243)] = 40267, + [SMALL_STATE(1244)] = 40343, + [SMALL_STATE(1245)] = 40416, + [SMALL_STATE(1246)] = 40489, + [SMALL_STATE(1247)] = 40562, + [SMALL_STATE(1248)] = 40635, + [SMALL_STATE(1249)] = 40708, + [SMALL_STATE(1250)] = 40781, + [SMALL_STATE(1251)] = 40854, + [SMALL_STATE(1252)] = 40927, + [SMALL_STATE(1253)] = 41000, + [SMALL_STATE(1254)] = 41073, + [SMALL_STATE(1255)] = 41146, + [SMALL_STATE(1256)] = 41219, + [SMALL_STATE(1257)] = 41292, + [SMALL_STATE(1258)] = 41365, + [SMALL_STATE(1259)] = 41438, + [SMALL_STATE(1260)] = 41503, + [SMALL_STATE(1261)] = 41576, + [SMALL_STATE(1262)] = 41649, + [SMALL_STATE(1263)] = 41722, + [SMALL_STATE(1264)] = 41795, + [SMALL_STATE(1265)] = 41868, + [SMALL_STATE(1266)] = 41941, + [SMALL_STATE(1267)] = 42014, + [SMALL_STATE(1268)] = 42087, + [SMALL_STATE(1269)] = 42160, + [SMALL_STATE(1270)] = 42233, + [SMALL_STATE(1271)] = 42306, + [SMALL_STATE(1272)] = 42379, + [SMALL_STATE(1273)] = 42452, + [SMALL_STATE(1274)] = 42525, + [SMALL_STATE(1275)] = 42562, + [SMALL_STATE(1276)] = 42601, + [SMALL_STATE(1277)] = 42666, + [SMALL_STATE(1278)] = 42739, + [SMALL_STATE(1279)] = 42812, + [SMALL_STATE(1280)] = 42885, + [SMALL_STATE(1281)] = 42958, + [SMALL_STATE(1282)] = 43031, + [SMALL_STATE(1283)] = 43104, + [SMALL_STATE(1284)] = 43177, + [SMALL_STATE(1285)] = 43250, + [SMALL_STATE(1286)] = 43323, + [SMALL_STATE(1287)] = 43396, + [SMALL_STATE(1288)] = 43469, + [SMALL_STATE(1289)] = 43534, + [SMALL_STATE(1290)] = 43607, + [SMALL_STATE(1291)] = 43680, + [SMALL_STATE(1292)] = 43753, + [SMALL_STATE(1293)] = 43826, + [SMALL_STATE(1294)] = 43899, + [SMALL_STATE(1295)] = 43972, + [SMALL_STATE(1296)] = 44045, + [SMALL_STATE(1297)] = 44118, + [SMALL_STATE(1298)] = 44191, + [SMALL_STATE(1299)] = 44264, + [SMALL_STATE(1300)] = 44337, + [SMALL_STATE(1301)] = 44410, + [SMALL_STATE(1302)] = 44483, + [SMALL_STATE(1303)] = 44520, + [SMALL_STATE(1304)] = 44585, + [SMALL_STATE(1305)] = 44658, + [SMALL_STATE(1306)] = 44731, + [SMALL_STATE(1307)] = 44804, + [SMALL_STATE(1308)] = 44877, + [SMALL_STATE(1309)] = 44950, + [SMALL_STATE(1310)] = 45015, + [SMALL_STATE(1311)] = 45088, + [SMALL_STATE(1312)] = 45161, + [SMALL_STATE(1313)] = 45234, + [SMALL_STATE(1314)] = 45307, + [SMALL_STATE(1315)] = 45380, + [SMALL_STATE(1316)] = 45453, + [SMALL_STATE(1317)] = 45526, + [SMALL_STATE(1318)] = 45562, + [SMALL_STATE(1319)] = 45598, + [SMALL_STATE(1320)] = 45637, + [SMALL_STATE(1321)] = 45676, + [SMALL_STATE(1322)] = 45725, + [SMALL_STATE(1323)] = 45774, + [SMALL_STATE(1324)] = 45823, + [SMALL_STATE(1325)] = 45872, + [SMALL_STATE(1326)] = 45921, + [SMALL_STATE(1327)] = 45970, + [SMALL_STATE(1328)] = 46003, + [SMALL_STATE(1329)] = 46052, + [SMALL_STATE(1330)] = 46101, + [SMALL_STATE(1331)] = 46150, + [SMALL_STATE(1332)] = 46183, + [SMALL_STATE(1333)] = 46216, + [SMALL_STATE(1334)] = 46265, + [SMALL_STATE(1335)] = 46314, + [SMALL_STATE(1336)] = 46360, + [SMALL_STATE(1337)] = 46406, + [SMALL_STATE(1338)] = 46452, + [SMALL_STATE(1339)] = 46498, + [SMALL_STATE(1340)] = 46544, + [SMALL_STATE(1341)] = 46590, + [SMALL_STATE(1342)] = 46619, + [SMALL_STATE(1343)] = 46660, + [SMALL_STATE(1344)] = 46701, + [SMALL_STATE(1345)] = 46742, + [SMALL_STATE(1346)] = 46770, + [SMALL_STATE(1347)] = 46819, + [SMALL_STATE(1348)] = 46863, + [SMALL_STATE(1349)] = 46905, + [SMALL_STATE(1350)] = 46949, + [SMALL_STATE(1351)] = 46990, + [SMALL_STATE(1352)] = 47029, + [SMALL_STATE(1353)] = 47070, + [SMALL_STATE(1354)] = 47097, + [SMALL_STATE(1355)] = 47138, + [SMALL_STATE(1356)] = 47177, + [SMALL_STATE(1357)] = 47218, + [SMALL_STATE(1358)] = 47245, + [SMALL_STATE(1359)] = 47281, + [SMALL_STATE(1360)] = 47305, + [SMALL_STATE(1361)] = 47326, + [SMALL_STATE(1362)] = 47347, + [SMALL_STATE(1363)] = 47382, + [SMALL_STATE(1364)] = 47403, + [SMALL_STATE(1365)] = 47423, + [SMALL_STATE(1366)] = 47443, + [SMALL_STATE(1367)] = 47479, + [SMALL_STATE(1368)] = 47499, + [SMALL_STATE(1369)] = 47519, + [SMALL_STATE(1370)] = 47555, + [SMALL_STATE(1371)] = 47575, + [SMALL_STATE(1372)] = 47605, + [SMALL_STATE(1373)] = 47641, + [SMALL_STATE(1374)] = 47661, + [SMALL_STATE(1375)] = 47681, + [SMALL_STATE(1376)] = 47701, + [SMALL_STATE(1377)] = 47721, + [SMALL_STATE(1378)] = 47741, + [SMALL_STATE(1379)] = 47761, + [SMALL_STATE(1380)] = 47781, + [SMALL_STATE(1381)] = 47817, + [SMALL_STATE(1382)] = 47837, + [SMALL_STATE(1383)] = 47857, + [SMALL_STATE(1384)] = 47877, + [SMALL_STATE(1385)] = 47913, + [SMALL_STATE(1386)] = 47933, + [SMALL_STATE(1387)] = 47953, + [SMALL_STATE(1388)] = 47973, + [SMALL_STATE(1389)] = 47992, + [SMALL_STATE(1390)] = 48011, + [SMALL_STATE(1391)] = 48052, + [SMALL_STATE(1392)] = 48071, + [SMALL_STATE(1393)] = 48104, + [SMALL_STATE(1394)] = 48123, + [SMALL_STATE(1395)] = 48142, + [SMALL_STATE(1396)] = 48163, + [SMALL_STATE(1397)] = 48182, + [SMALL_STATE(1398)] = 48215, + [SMALL_STATE(1399)] = 48234, + [SMALL_STATE(1400)] = 48253, + [SMALL_STATE(1401)] = 48272, + [SMALL_STATE(1402)] = 48291, + [SMALL_STATE(1403)] = 48310, + [SMALL_STATE(1404)] = 48329, + [SMALL_STATE(1405)] = 48354, + [SMALL_STATE(1406)] = 48373, + [SMALL_STATE(1407)] = 48392, + [SMALL_STATE(1408)] = 48425, + [SMALL_STATE(1409)] = 48444, + [SMALL_STATE(1410)] = 48479, + [SMALL_STATE(1411)] = 48498, + [SMALL_STATE(1412)] = 48517, + [SMALL_STATE(1413)] = 48544, + [SMALL_STATE(1414)] = 48563, + [SMALL_STATE(1415)] = 48582, + [SMALL_STATE(1416)] = 48615, + [SMALL_STATE(1417)] = 48634, + [SMALL_STATE(1418)] = 48669, + [SMALL_STATE(1419)] = 48702, + [SMALL_STATE(1420)] = 48721, + [SMALL_STATE(1421)] = 48740, + [SMALL_STATE(1422)] = 48759, + [SMALL_STATE(1423)] = 48778, + [SMALL_STATE(1424)] = 48819, + [SMALL_STATE(1425)] = 48849, + [SMALL_STATE(1426)] = 48883, + [SMALL_STATE(1427)] = 48917, + [SMALL_STATE(1428)] = 48951, + [SMALL_STATE(1429)] = 48985, + [SMALL_STATE(1430)] = 49016, + [SMALL_STATE(1431)] = 49041, + [SMALL_STATE(1432)] = 49072, + [SMALL_STATE(1433)] = 49103, + [SMALL_STATE(1434)] = 49132, + [SMALL_STATE(1435)] = 49163, + [SMALL_STATE(1436)] = 49188, + [SMALL_STATE(1437)] = 49219, + [SMALL_STATE(1438)] = 49238, + [SMALL_STATE(1439)] = 49267, + [SMALL_STATE(1440)] = 49286, + [SMALL_STATE(1441)] = 49305, + [SMALL_STATE(1442)] = 49334, + [SMALL_STATE(1443)] = 49365, + [SMALL_STATE(1444)] = 49391, + [SMALL_STATE(1445)] = 49413, + [SMALL_STATE(1446)] = 49431, + [SMALL_STATE(1447)] = 49457, + [SMALL_STATE(1448)] = 49483, + [SMALL_STATE(1449)] = 49511, + [SMALL_STATE(1450)] = 49529, + [SMALL_STATE(1451)] = 49547, + [SMALL_STATE(1452)] = 49565, + [SMALL_STATE(1453)] = 49589, + [SMALL_STATE(1454)] = 49611, + [SMALL_STATE(1455)] = 49629, + [SMALL_STATE(1456)] = 49651, + [SMALL_STATE(1457)] = 49673, + [SMALL_STATE(1458)] = 49691, + [SMALL_STATE(1459)] = 49709, + [SMALL_STATE(1460)] = 49731, + [SMALL_STATE(1461)] = 49749, + [SMALL_STATE(1462)] = 49767, + [SMALL_STATE(1463)] = 49795, + [SMALL_STATE(1464)] = 49813, + [SMALL_STATE(1465)] = 49831, + [SMALL_STATE(1466)] = 49849, + [SMALL_STATE(1467)] = 49867, + [SMALL_STATE(1468)] = 49885, + [SMALL_STATE(1469)] = 49913, + [SMALL_STATE(1470)] = 49941, + [SMALL_STATE(1471)] = 49959, + [SMALL_STATE(1472)] = 49987, + [SMALL_STATE(1473)] = 50012, + [SMALL_STATE(1474)] = 50035, + [SMALL_STATE(1475)] = 50058, + [SMALL_STATE(1476)] = 50081, + [SMALL_STATE(1477)] = 50106, + [SMALL_STATE(1478)] = 50131, + [SMALL_STATE(1479)] = 50158, + [SMALL_STATE(1480)] = 50175, + [SMALL_STATE(1481)] = 50190, + [SMALL_STATE(1482)] = 50211, + [SMALL_STATE(1483)] = 50234, + [SMALL_STATE(1484)] = 50251, + [SMALL_STATE(1485)] = 50276, + [SMALL_STATE(1486)] = 50297, + [SMALL_STATE(1487)] = 50320, + [SMALL_STATE(1488)] = 50345, + [SMALL_STATE(1489)] = 50360, + [SMALL_STATE(1490)] = 50383, + [SMALL_STATE(1491)] = 50398, + [SMALL_STATE(1492)] = 50425, + [SMALL_STATE(1493)] = 50440, + [SMALL_STATE(1494)] = 50455, + [SMALL_STATE(1495)] = 50476, + [SMALL_STATE(1496)] = 50499, + [SMALL_STATE(1497)] = 50522, + [SMALL_STATE(1498)] = 50547, + [SMALL_STATE(1499)] = 50570, + [SMALL_STATE(1500)] = 50591, + [SMALL_STATE(1501)] = 50614, + [SMALL_STATE(1502)] = 50637, + [SMALL_STATE(1503)] = 50658, + [SMALL_STATE(1504)] = 50681, + [SMALL_STATE(1505)] = 50706, + [SMALL_STATE(1506)] = 50729, + [SMALL_STATE(1507)] = 50750, + [SMALL_STATE(1508)] = 50773, + [SMALL_STATE(1509)] = 50796, + [SMALL_STATE(1510)] = 50819, + [SMALL_STATE(1511)] = 50840, + [SMALL_STATE(1512)] = 50863, + [SMALL_STATE(1513)] = 50886, + [SMALL_STATE(1514)] = 50907, + [SMALL_STATE(1515)] = 50928, + [SMALL_STATE(1516)] = 50951, + [SMALL_STATE(1517)] = 50972, + [SMALL_STATE(1518)] = 50997, + [SMALL_STATE(1519)] = 51018, + [SMALL_STATE(1520)] = 51039, + [SMALL_STATE(1521)] = 51060, + [SMALL_STATE(1522)] = 51085, + [SMALL_STATE(1523)] = 51108, + [SMALL_STATE(1524)] = 51131, + [SMALL_STATE(1525)] = 51154, + [SMALL_STATE(1526)] = 51179, + [SMALL_STATE(1527)] = 51204, + [SMALL_STATE(1528)] = 51227, + [SMALL_STATE(1529)] = 51250, + [SMALL_STATE(1530)] = 51275, + [SMALL_STATE(1531)] = 51298, + [SMALL_STATE(1532)] = 51321, + [SMALL_STATE(1533)] = 51344, + [SMALL_STATE(1534)] = 51367, + [SMALL_STATE(1535)] = 51390, + [SMALL_STATE(1536)] = 51415, + [SMALL_STATE(1537)] = 51435, + [SMALL_STATE(1538)] = 51463, + [SMALL_STATE(1539)] = 51491, + [SMALL_STATE(1540)] = 51519, + [SMALL_STATE(1541)] = 51547, + [SMALL_STATE(1542)] = 51571, + [SMALL_STATE(1543)] = 51591, + [SMALL_STATE(1544)] = 51611, + [SMALL_STATE(1545)] = 51637, + [SMALL_STATE(1546)] = 51659, + [SMALL_STATE(1547)] = 51687, + [SMALL_STATE(1548)] = 51709, + [SMALL_STATE(1549)] = 51729, + [SMALL_STATE(1550)] = 51757, + [SMALL_STATE(1551)] = 51782, + [SMALL_STATE(1552)] = 51799, + [SMALL_STATE(1553)] = 51820, + [SMALL_STATE(1554)] = 51839, + [SMALL_STATE(1555)] = 51862, + [SMALL_STATE(1556)] = 51879, + [SMALL_STATE(1557)] = 51894, + [SMALL_STATE(1558)] = 51911, + [SMALL_STATE(1559)] = 51926, + [SMALL_STATE(1560)] = 51941, + [SMALL_STATE(1561)] = 51960, + [SMALL_STATE(1562)] = 51977, + [SMALL_STATE(1563)] = 51994, + [SMALL_STATE(1564)] = 52011, + [SMALL_STATE(1565)] = 52028, + [SMALL_STATE(1566)] = 52045, + [SMALL_STATE(1567)] = 52062, + [SMALL_STATE(1568)] = 52079, + [SMALL_STATE(1569)] = 52096, + [SMALL_STATE(1570)] = 52117, + [SMALL_STATE(1571)] = 52132, + [SMALL_STATE(1572)] = 52151, + [SMALL_STATE(1573)] = 52172, + [SMALL_STATE(1574)] = 52191, + [SMALL_STATE(1575)] = 52206, + [SMALL_STATE(1576)] = 52223, + [SMALL_STATE(1577)] = 52238, + [SMALL_STATE(1578)] = 52253, + [SMALL_STATE(1579)] = 52268, + [SMALL_STATE(1580)] = 52283, + [SMALL_STATE(1581)] = 52300, + [SMALL_STATE(1582)] = 52315, + [SMALL_STATE(1583)] = 52330, + [SMALL_STATE(1584)] = 52345, + [SMALL_STATE(1585)] = 52362, + [SMALL_STATE(1586)] = 52379, + [SMALL_STATE(1587)] = 52396, + [SMALL_STATE(1588)] = 52417, + [SMALL_STATE(1589)] = 52434, + [SMALL_STATE(1590)] = 52449, + [SMALL_STATE(1591)] = 52466, + [SMALL_STATE(1592)] = 52480, + [SMALL_STATE(1593)] = 52502, + [SMALL_STATE(1594)] = 52524, + [SMALL_STATE(1595)] = 52544, + [SMALL_STATE(1596)] = 52566, + [SMALL_STATE(1597)] = 52588, + [SMALL_STATE(1598)] = 52608, + [SMALL_STATE(1599)] = 52630, + [SMALL_STATE(1600)] = 52648, + [SMALL_STATE(1601)] = 52666, + [SMALL_STATE(1602)] = 52684, + [SMALL_STATE(1603)] = 52706, + [SMALL_STATE(1604)] = 52728, + [SMALL_STATE(1605)] = 52750, + [SMALL_STATE(1606)] = 52764, + [SMALL_STATE(1607)] = 52786, + [SMALL_STATE(1608)] = 52808, + [SMALL_STATE(1609)] = 52828, + [SMALL_STATE(1610)] = 52850, + [SMALL_STATE(1611)] = 52868, + [SMALL_STATE(1612)] = 52886, + [SMALL_STATE(1613)] = 52908, + [SMALL_STATE(1614)] = 52930, + [SMALL_STATE(1615)] = 52948, + [SMALL_STATE(1616)] = 52970, + [SMALL_STATE(1617)] = 52988, + [SMALL_STATE(1618)] = 53010, + [SMALL_STATE(1619)] = 53032, + [SMALL_STATE(1620)] = 53054, + [SMALL_STATE(1621)] = 53076, + [SMALL_STATE(1622)] = 53098, + [SMALL_STATE(1623)] = 53116, + [SMALL_STATE(1624)] = 53138, + [SMALL_STATE(1625)] = 53152, + [SMALL_STATE(1626)] = 53174, + [SMALL_STATE(1627)] = 53196, + [SMALL_STATE(1628)] = 53210, + [SMALL_STATE(1629)] = 53228, + [SMALL_STATE(1630)] = 53242, + [SMALL_STATE(1631)] = 53264, + [SMALL_STATE(1632)] = 53284, + [SMALL_STATE(1633)] = 53306, + [SMALL_STATE(1634)] = 53328, + [SMALL_STATE(1635)] = 53350, + [SMALL_STATE(1636)] = 53372, + [SMALL_STATE(1637)] = 53394, + [SMALL_STATE(1638)] = 53416, + [SMALL_STATE(1639)] = 53438, + [SMALL_STATE(1640)] = 53460, + [SMALL_STATE(1641)] = 53482, + [SMALL_STATE(1642)] = 53500, + [SMALL_STATE(1643)] = 53522, + [SMALL_STATE(1644)] = 53540, + [SMALL_STATE(1645)] = 53558, + [SMALL_STATE(1646)] = 53572, + [SMALL_STATE(1647)] = 53594, + [SMALL_STATE(1648)] = 53610, + [SMALL_STATE(1649)] = 53624, + [SMALL_STATE(1650)] = 53646, + [SMALL_STATE(1651)] = 53668, + [SMALL_STATE(1652)] = 53690, + [SMALL_STATE(1653)] = 53704, + [SMALL_STATE(1654)] = 53726, + [SMALL_STATE(1655)] = 53748, + [SMALL_STATE(1656)] = 53766, + [SMALL_STATE(1657)] = 53784, + [SMALL_STATE(1658)] = 53802, + [SMALL_STATE(1659)] = 53824, + [SMALL_STATE(1660)] = 53835, + [SMALL_STATE(1661)] = 53850, + [SMALL_STATE(1662)] = 53869, + [SMALL_STATE(1663)] = 53886, + [SMALL_STATE(1664)] = 53901, + [SMALL_STATE(1665)] = 53920, + [SMALL_STATE(1666)] = 53935, + [SMALL_STATE(1667)] = 53954, + [SMALL_STATE(1668)] = 53971, + [SMALL_STATE(1669)] = 53986, + [SMALL_STATE(1670)] = 54005, + [SMALL_STATE(1671)] = 54024, + [SMALL_STATE(1672)] = 54039, + [SMALL_STATE(1673)] = 54056, + [SMALL_STATE(1674)] = 54071, + [SMALL_STATE(1675)] = 54086, + [SMALL_STATE(1676)] = 54105, + [SMALL_STATE(1677)] = 54120, + [SMALL_STATE(1678)] = 54139, + [SMALL_STATE(1679)] = 54156, + [SMALL_STATE(1680)] = 54171, + [SMALL_STATE(1681)] = 54186, + [SMALL_STATE(1682)] = 54201, + [SMALL_STATE(1683)] = 54216, + [SMALL_STATE(1684)] = 54231, + [SMALL_STATE(1685)] = 54246, + [SMALL_STATE(1686)] = 54261, + [SMALL_STATE(1687)] = 54276, + [SMALL_STATE(1688)] = 54289, + [SMALL_STATE(1689)] = 54304, + [SMALL_STATE(1690)] = 54321, + [SMALL_STATE(1691)] = 54338, + [SMALL_STATE(1692)] = 54353, + [SMALL_STATE(1693)] = 54370, + [SMALL_STATE(1694)] = 54389, + [SMALL_STATE(1695)] = 54406, + [SMALL_STATE(1696)] = 54419, + [SMALL_STATE(1697)] = 54434, + [SMALL_STATE(1698)] = 54453, + [SMALL_STATE(1699)] = 54468, + [SMALL_STATE(1700)] = 54483, + [SMALL_STATE(1701)] = 54498, + [SMALL_STATE(1702)] = 54513, + [SMALL_STATE(1703)] = 54530, + [SMALL_STATE(1704)] = 54547, + [SMALL_STATE(1705)] = 54566, + [SMALL_STATE(1706)] = 54581, + [SMALL_STATE(1707)] = 54596, + [SMALL_STATE(1708)] = 54611, + [SMALL_STATE(1709)] = 54626, + [SMALL_STATE(1710)] = 54643, + [SMALL_STATE(1711)] = 54658, + [SMALL_STATE(1712)] = 54673, + [SMALL_STATE(1713)] = 54690, + [SMALL_STATE(1714)] = 54705, + [SMALL_STATE(1715)] = 54724, + [SMALL_STATE(1716)] = 54735, + [SMALL_STATE(1717)] = 54750, + [SMALL_STATE(1718)] = 54769, + [SMALL_STATE(1719)] = 54788, + [SMALL_STATE(1720)] = 54801, + [SMALL_STATE(1721)] = 54816, + [SMALL_STATE(1722)] = 54835, + [SMALL_STATE(1723)] = 54850, + [SMALL_STATE(1724)] = 54869, + [SMALL_STATE(1725)] = 54888, + [SMALL_STATE(1726)] = 54903, + [SMALL_STATE(1727)] = 54918, + [SMALL_STATE(1728)] = 54935, + [SMALL_STATE(1729)] = 54954, + [SMALL_STATE(1730)] = 54969, + [SMALL_STATE(1731)] = 54988, + [SMALL_STATE(1732)] = 55007, + [SMALL_STATE(1733)] = 55024, + [SMALL_STATE(1734)] = 55043, + [SMALL_STATE(1735)] = 55058, + [SMALL_STATE(1736)] = 55073, + [SMALL_STATE(1737)] = 55088, + [SMALL_STATE(1738)] = 55103, + [SMALL_STATE(1739)] = 55120, + [SMALL_STATE(1740)] = 55135, + [SMALL_STATE(1741)] = 55150, + [SMALL_STATE(1742)] = 55165, + [SMALL_STATE(1743)] = 55180, + [SMALL_STATE(1744)] = 55195, + [SMALL_STATE(1745)] = 55210, + [SMALL_STATE(1746)] = 55229, + [SMALL_STATE(1747)] = 55240, + [SMALL_STATE(1748)] = 55255, + [SMALL_STATE(1749)] = 55272, + [SMALL_STATE(1750)] = 55289, + [SMALL_STATE(1751)] = 55304, + [SMALL_STATE(1752)] = 55323, + [SMALL_STATE(1753)] = 55340, + [SMALL_STATE(1754)] = 55354, + [SMALL_STATE(1755)] = 55368, + [SMALL_STATE(1756)] = 55382, + [SMALL_STATE(1757)] = 55398, + [SMALL_STATE(1758)] = 55412, + [SMALL_STATE(1759)] = 55426, + [SMALL_STATE(1760)] = 55442, + [SMALL_STATE(1761)] = 55452, + [SMALL_STATE(1762)] = 55462, + [SMALL_STATE(1763)] = 55478, + [SMALL_STATE(1764)] = 55488, + [SMALL_STATE(1765)] = 55502, + [SMALL_STATE(1766)] = 55516, + [SMALL_STATE(1767)] = 55530, + [SMALL_STATE(1768)] = 55546, + [SMALL_STATE(1769)] = 55562, + [SMALL_STATE(1770)] = 55578, + [SMALL_STATE(1771)] = 55594, + [SMALL_STATE(1772)] = 55608, + [SMALL_STATE(1773)] = 55622, + [SMALL_STATE(1774)] = 55634, + [SMALL_STATE(1775)] = 55648, + [SMALL_STATE(1776)] = 55664, + [SMALL_STATE(1777)] = 55674, + [SMALL_STATE(1778)] = 55688, + [SMALL_STATE(1779)] = 55704, + [SMALL_STATE(1780)] = 55716, + [SMALL_STATE(1781)] = 55730, + [SMALL_STATE(1782)] = 55746, + [SMALL_STATE(1783)] = 55758, + [SMALL_STATE(1784)] = 55768, + [SMALL_STATE(1785)] = 55784, + [SMALL_STATE(1786)] = 55798, + [SMALL_STATE(1787)] = 55814, + [SMALL_STATE(1788)] = 55830, + [SMALL_STATE(1789)] = 55844, + [SMALL_STATE(1790)] = 55858, + [SMALL_STATE(1791)] = 55872, + [SMALL_STATE(1792)] = 55888, + [SMALL_STATE(1793)] = 55902, + [SMALL_STATE(1794)] = 55918, + [SMALL_STATE(1795)] = 55932, + [SMALL_STATE(1796)] = 55942, + [SMALL_STATE(1797)] = 55958, + [SMALL_STATE(1798)] = 55972, + [SMALL_STATE(1799)] = 55988, + [SMALL_STATE(1800)] = 56004, + [SMALL_STATE(1801)] = 56020, + [SMALL_STATE(1802)] = 56036, + [SMALL_STATE(1803)] = 56046, + [SMALL_STATE(1804)] = 56056, + [SMALL_STATE(1805)] = 56070, + [SMALL_STATE(1806)] = 56084, + [SMALL_STATE(1807)] = 56098, + [SMALL_STATE(1808)] = 56108, + [SMALL_STATE(1809)] = 56122, + [SMALL_STATE(1810)] = 56136, + [SMALL_STATE(1811)] = 56152, + [SMALL_STATE(1812)] = 56168, + [SMALL_STATE(1813)] = 56182, + [SMALL_STATE(1814)] = 56198, + [SMALL_STATE(1815)] = 56212, + [SMALL_STATE(1816)] = 56226, + [SMALL_STATE(1817)] = 56242, + [SMALL_STATE(1818)] = 56256, + [SMALL_STATE(1819)] = 56272, + [SMALL_STATE(1820)] = 56286, + [SMALL_STATE(1821)] = 56296, + [SMALL_STATE(1822)] = 56310, + [SMALL_STATE(1823)] = 56326, + [SMALL_STATE(1824)] = 56342, + [SMALL_STATE(1825)] = 56356, + [SMALL_STATE(1826)] = 56370, + [SMALL_STATE(1827)] = 56386, + [SMALL_STATE(1828)] = 56400, + [SMALL_STATE(1829)] = 56416, + [SMALL_STATE(1830)] = 56430, + [SMALL_STATE(1831)] = 56444, + [SMALL_STATE(1832)] = 56458, + [SMALL_STATE(1833)] = 56472, + [SMALL_STATE(1834)] = 56488, + [SMALL_STATE(1835)] = 56504, + [SMALL_STATE(1836)] = 56518, + [SMALL_STATE(1837)] = 56534, + [SMALL_STATE(1838)] = 56550, + [SMALL_STATE(1839)] = 56566, + [SMALL_STATE(1840)] = 56582, + [SMALL_STATE(1841)] = 56598, + [SMALL_STATE(1842)] = 56614, + [SMALL_STATE(1843)] = 56630, + [SMALL_STATE(1844)] = 56646, + [SMALL_STATE(1845)] = 56656, + [SMALL_STATE(1846)] = 56672, + [SMALL_STATE(1847)] = 56686, + [SMALL_STATE(1848)] = 56698, + [SMALL_STATE(1849)] = 56710, + [SMALL_STATE(1850)] = 56724, + [SMALL_STATE(1851)] = 56740, + [SMALL_STATE(1852)] = 56756, + [SMALL_STATE(1853)] = 56772, + [SMALL_STATE(1854)] = 56786, + [SMALL_STATE(1855)] = 56802, + [SMALL_STATE(1856)] = 56818, + [SMALL_STATE(1857)] = 56834, + [SMALL_STATE(1858)] = 56848, + [SMALL_STATE(1859)] = 56858, + [SMALL_STATE(1860)] = 56874, + [SMALL_STATE(1861)] = 56884, + [SMALL_STATE(1862)] = 56900, + [SMALL_STATE(1863)] = 56910, + [SMALL_STATE(1864)] = 56924, + [SMALL_STATE(1865)] = 56938, + [SMALL_STATE(1866)] = 56954, + [SMALL_STATE(1867)] = 56970, + [SMALL_STATE(1868)] = 56984, + [SMALL_STATE(1869)] = 56994, + [SMALL_STATE(1870)] = 57008, + [SMALL_STATE(1871)] = 57024, + [SMALL_STATE(1872)] = 57038, + [SMALL_STATE(1873)] = 57048, + [SMALL_STATE(1874)] = 57064, + [SMALL_STATE(1875)] = 57078, + [SMALL_STATE(1876)] = 57092, + [SMALL_STATE(1877)] = 57106, + [SMALL_STATE(1878)] = 57120, + [SMALL_STATE(1879)] = 57134, + [SMALL_STATE(1880)] = 57150, + [SMALL_STATE(1881)] = 57164, + [SMALL_STATE(1882)] = 57174, + [SMALL_STATE(1883)] = 57188, + [SMALL_STATE(1884)] = 57202, + [SMALL_STATE(1885)] = 57218, + [SMALL_STATE(1886)] = 57234, + [SMALL_STATE(1887)] = 57248, + [SMALL_STATE(1888)] = 57262, + [SMALL_STATE(1889)] = 57278, + [SMALL_STATE(1890)] = 57288, + [SMALL_STATE(1891)] = 57302, + [SMALL_STATE(1892)] = 57316, + [SMALL_STATE(1893)] = 57332, + [SMALL_STATE(1894)] = 57348, + [SMALL_STATE(1895)] = 57362, + [SMALL_STATE(1896)] = 57376, + [SMALL_STATE(1897)] = 57390, + [SMALL_STATE(1898)] = 57404, + [SMALL_STATE(1899)] = 57418, + [SMALL_STATE(1900)] = 57428, + [SMALL_STATE(1901)] = 57444, + [SMALL_STATE(1902)] = 57460, + [SMALL_STATE(1903)] = 57474, + [SMALL_STATE(1904)] = 57488, + [SMALL_STATE(1905)] = 57502, + [SMALL_STATE(1906)] = 57518, + [SMALL_STATE(1907)] = 57531, + [SMALL_STATE(1908)] = 57544, + [SMALL_STATE(1909)] = 57555, + [SMALL_STATE(1910)] = 57568, + [SMALL_STATE(1911)] = 57581, + [SMALL_STATE(1912)] = 57594, + [SMALL_STATE(1913)] = 57607, + [SMALL_STATE(1914)] = 57620, + [SMALL_STATE(1915)] = 57633, + [SMALL_STATE(1916)] = 57646, + [SMALL_STATE(1917)] = 57657, + [SMALL_STATE(1918)] = 57670, + [SMALL_STATE(1919)] = 57683, + [SMALL_STATE(1920)] = 57696, + [SMALL_STATE(1921)] = 57709, + [SMALL_STATE(1922)] = 57722, + [SMALL_STATE(1923)] = 57735, + [SMALL_STATE(1924)] = 57748, + [SMALL_STATE(1925)] = 57761, + [SMALL_STATE(1926)] = 57774, + [SMALL_STATE(1927)] = 57787, + [SMALL_STATE(1928)] = 57800, + [SMALL_STATE(1929)] = 57813, + [SMALL_STATE(1930)] = 57824, + [SMALL_STATE(1931)] = 57833, + [SMALL_STATE(1932)] = 57846, + [SMALL_STATE(1933)] = 57859, + [SMALL_STATE(1934)] = 57872, + [SMALL_STATE(1935)] = 57885, + [SMALL_STATE(1936)] = 57896, + [SMALL_STATE(1937)] = 57909, + [SMALL_STATE(1938)] = 57922, + [SMALL_STATE(1939)] = 57935, + [SMALL_STATE(1940)] = 57948, + [SMALL_STATE(1941)] = 57961, + [SMALL_STATE(1942)] = 57974, + [SMALL_STATE(1943)] = 57987, + [SMALL_STATE(1944)] = 58000, + [SMALL_STATE(1945)] = 58013, + [SMALL_STATE(1946)] = 58026, + [SMALL_STATE(1947)] = 58039, + [SMALL_STATE(1948)] = 58052, + [SMALL_STATE(1949)] = 58065, + [SMALL_STATE(1950)] = 58078, + [SMALL_STATE(1951)] = 58091, + [SMALL_STATE(1952)] = 58104, + [SMALL_STATE(1953)] = 58117, + [SMALL_STATE(1954)] = 58130, + [SMALL_STATE(1955)] = 58143, + [SMALL_STATE(1956)] = 58152, + [SMALL_STATE(1957)] = 58161, + [SMALL_STATE(1958)] = 58174, + [SMALL_STATE(1959)] = 58183, + [SMALL_STATE(1960)] = 58192, + [SMALL_STATE(1961)] = 58201, + [SMALL_STATE(1962)] = 58212, + [SMALL_STATE(1963)] = 58223, + [SMALL_STATE(1964)] = 58236, + [SMALL_STATE(1965)] = 58249, + [SMALL_STATE(1966)] = 58262, + [SMALL_STATE(1967)] = 58275, + [SMALL_STATE(1968)] = 58288, + [SMALL_STATE(1969)] = 58299, + [SMALL_STATE(1970)] = 58312, + [SMALL_STATE(1971)] = 58323, + [SMALL_STATE(1972)] = 58336, + [SMALL_STATE(1973)] = 58345, + [SMALL_STATE(1974)] = 58358, + [SMALL_STATE(1975)] = 58369, + [SMALL_STATE(1976)] = 58380, + [SMALL_STATE(1977)] = 58393, + [SMALL_STATE(1978)] = 58404, + [SMALL_STATE(1979)] = 58417, + [SMALL_STATE(1980)] = 58428, + [SMALL_STATE(1981)] = 58439, + [SMALL_STATE(1982)] = 58450, + [SMALL_STATE(1983)] = 58463, + [SMALL_STATE(1984)] = 58474, + [SMALL_STATE(1985)] = 58487, + [SMALL_STATE(1986)] = 58498, + [SMALL_STATE(1987)] = 58509, + [SMALL_STATE(1988)] = 58518, + [SMALL_STATE(1989)] = 58531, + [SMALL_STATE(1990)] = 58540, + [SMALL_STATE(1991)] = 58551, + [SMALL_STATE(1992)] = 58564, + [SMALL_STATE(1993)] = 58575, + [SMALL_STATE(1994)] = 58588, + [SMALL_STATE(1995)] = 58599, + [SMALL_STATE(1996)] = 58610, + [SMALL_STATE(1997)] = 58623, + [SMALL_STATE(1998)] = 58632, + [SMALL_STATE(1999)] = 58645, + [SMALL_STATE(2000)] = 58658, + [SMALL_STATE(2001)] = 58669, + [SMALL_STATE(2002)] = 58682, + [SMALL_STATE(2003)] = 58695, + [SMALL_STATE(2004)] = 58706, + [SMALL_STATE(2005)] = 58719, + [SMALL_STATE(2006)] = 58730, + [SMALL_STATE(2007)] = 58743, + [SMALL_STATE(2008)] = 58754, + [SMALL_STATE(2009)] = 58767, + [SMALL_STATE(2010)] = 58778, + [SMALL_STATE(2011)] = 58791, + [SMALL_STATE(2012)] = 58802, + [SMALL_STATE(2013)] = 58815, + [SMALL_STATE(2014)] = 58826, + [SMALL_STATE(2015)] = 58837, + [SMALL_STATE(2016)] = 58848, + [SMALL_STATE(2017)] = 58859, + [SMALL_STATE(2018)] = 58870, + [SMALL_STATE(2019)] = 58883, + [SMALL_STATE(2020)] = 58894, + [SMALL_STATE(2021)] = 58905, + [SMALL_STATE(2022)] = 58916, + [SMALL_STATE(2023)] = 58927, + [SMALL_STATE(2024)] = 58940, + [SMALL_STATE(2025)] = 58951, + [SMALL_STATE(2026)] = 58962, + [SMALL_STATE(2027)] = 58973, + [SMALL_STATE(2028)] = 58984, + [SMALL_STATE(2029)] = 58997, + [SMALL_STATE(2030)] = 59010, + [SMALL_STATE(2031)] = 59021, + [SMALL_STATE(2032)] = 59034, + [SMALL_STATE(2033)] = 59047, + [SMALL_STATE(2034)] = 59058, + [SMALL_STATE(2035)] = 59071, + [SMALL_STATE(2036)] = 59084, + [SMALL_STATE(2037)] = 59097, + [SMALL_STATE(2038)] = 59110, + [SMALL_STATE(2039)] = 59121, + [SMALL_STATE(2040)] = 59134, + [SMALL_STATE(2041)] = 59147, + [SMALL_STATE(2042)] = 59160, + [SMALL_STATE(2043)] = 59173, + [SMALL_STATE(2044)] = 59184, + [SMALL_STATE(2045)] = 59193, + [SMALL_STATE(2046)] = 59202, + [SMALL_STATE(2047)] = 59215, + [SMALL_STATE(2048)] = 59226, + [SMALL_STATE(2049)] = 59239, + [SMALL_STATE(2050)] = 59252, + [SMALL_STATE(2051)] = 59265, + [SMALL_STATE(2052)] = 59278, + [SMALL_STATE(2053)] = 59289, + [SMALL_STATE(2054)] = 59300, + [SMALL_STATE(2055)] = 59311, + [SMALL_STATE(2056)] = 59322, + [SMALL_STATE(2057)] = 59333, + [SMALL_STATE(2058)] = 59344, + [SMALL_STATE(2059)] = 59355, + [SMALL_STATE(2060)] = 59366, + [SMALL_STATE(2061)] = 59377, + [SMALL_STATE(2062)] = 59388, + [SMALL_STATE(2063)] = 59399, + [SMALL_STATE(2064)] = 59410, + [SMALL_STATE(2065)] = 59421, + [SMALL_STATE(2066)] = 59432, + [SMALL_STATE(2067)] = 59443, + [SMALL_STATE(2068)] = 59454, + [SMALL_STATE(2069)] = 59465, + [SMALL_STATE(2070)] = 59476, + [SMALL_STATE(2071)] = 59487, + [SMALL_STATE(2072)] = 59498, + [SMALL_STATE(2073)] = 59509, + [SMALL_STATE(2074)] = 59520, + [SMALL_STATE(2075)] = 59531, + [SMALL_STATE(2076)] = 59544, + [SMALL_STATE(2077)] = 59555, + [SMALL_STATE(2078)] = 59566, + [SMALL_STATE(2079)] = 59579, + [SMALL_STATE(2080)] = 59592, + [SMALL_STATE(2081)] = 59603, + [SMALL_STATE(2082)] = 59614, + [SMALL_STATE(2083)] = 59625, + [SMALL_STATE(2084)] = 59636, + [SMALL_STATE(2085)] = 59647, + [SMALL_STATE(2086)] = 59658, + [SMALL_STATE(2087)] = 59669, + [SMALL_STATE(2088)] = 59680, + [SMALL_STATE(2089)] = 59691, + [SMALL_STATE(2090)] = 59702, + [SMALL_STATE(2091)] = 59713, + [SMALL_STATE(2092)] = 59724, + [SMALL_STATE(2093)] = 59735, + [SMALL_STATE(2094)] = 59744, + [SMALL_STATE(2095)] = 59755, + [SMALL_STATE(2096)] = 59766, + [SMALL_STATE(2097)] = 59777, + [SMALL_STATE(2098)] = 59788, + [SMALL_STATE(2099)] = 59799, + [SMALL_STATE(2100)] = 59810, + [SMALL_STATE(2101)] = 59823, + [SMALL_STATE(2102)] = 59834, + [SMALL_STATE(2103)] = 59847, + [SMALL_STATE(2104)] = 59858, + [SMALL_STATE(2105)] = 59869, + [SMALL_STATE(2106)] = 59880, + [SMALL_STATE(2107)] = 59891, + [SMALL_STATE(2108)] = 59902, + [SMALL_STATE(2109)] = 59913, + [SMALL_STATE(2110)] = 59924, + [SMALL_STATE(2111)] = 59937, + [SMALL_STATE(2112)] = 59948, + [SMALL_STATE(2113)] = 59957, + [SMALL_STATE(2114)] = 59966, + [SMALL_STATE(2115)] = 59979, + [SMALL_STATE(2116)] = 59990, + [SMALL_STATE(2117)] = 60001, + [SMALL_STATE(2118)] = 60012, + [SMALL_STATE(2119)] = 60025, + [SMALL_STATE(2120)] = 60036, + [SMALL_STATE(2121)] = 60047, + [SMALL_STATE(2122)] = 60058, + [SMALL_STATE(2123)] = 60069, + [SMALL_STATE(2124)] = 60080, + [SMALL_STATE(2125)] = 60091, + [SMALL_STATE(2126)] = 60102, + [SMALL_STATE(2127)] = 60113, + [SMALL_STATE(2128)] = 60124, + [SMALL_STATE(2129)] = 60135, + [SMALL_STATE(2130)] = 60146, + [SMALL_STATE(2131)] = 60157, + [SMALL_STATE(2132)] = 60170, + [SMALL_STATE(2133)] = 60181, + [SMALL_STATE(2134)] = 60192, + [SMALL_STATE(2135)] = 60203, + [SMALL_STATE(2136)] = 60214, + [SMALL_STATE(2137)] = 60225, + [SMALL_STATE(2138)] = 60236, + [SMALL_STATE(2139)] = 60247, + [SMALL_STATE(2140)] = 60256, + [SMALL_STATE(2141)] = 60267, + [SMALL_STATE(2142)] = 60278, + [SMALL_STATE(2143)] = 60289, + [SMALL_STATE(2144)] = 60298, + [SMALL_STATE(2145)] = 60311, + [SMALL_STATE(2146)] = 60320, + [SMALL_STATE(2147)] = 60331, + [SMALL_STATE(2148)] = 60342, + [SMALL_STATE(2149)] = 60353, + [SMALL_STATE(2150)] = 60362, + [SMALL_STATE(2151)] = 60375, + [SMALL_STATE(2152)] = 60386, + [SMALL_STATE(2153)] = 60397, + [SMALL_STATE(2154)] = 60410, + [SMALL_STATE(2155)] = 60423, + [SMALL_STATE(2156)] = 60436, + [SMALL_STATE(2157)] = 60445, + [SMALL_STATE(2158)] = 60458, + [SMALL_STATE(2159)] = 60469, + [SMALL_STATE(2160)] = 60478, + [SMALL_STATE(2161)] = 60491, + [SMALL_STATE(2162)] = 60504, + [SMALL_STATE(2163)] = 60517, + [SMALL_STATE(2164)] = 60530, + [SMALL_STATE(2165)] = 60539, + [SMALL_STATE(2166)] = 60552, + [SMALL_STATE(2167)] = 60561, + [SMALL_STATE(2168)] = 60574, + [SMALL_STATE(2169)] = 60587, + [SMALL_STATE(2170)] = 60596, + [SMALL_STATE(2171)] = 60605, + [SMALL_STATE(2172)] = 60618, + [SMALL_STATE(2173)] = 60629, + [SMALL_STATE(2174)] = 60642, + [SMALL_STATE(2175)] = 60652, + [SMALL_STATE(2176)] = 60660, + [SMALL_STATE(2177)] = 60668, + [SMALL_STATE(2178)] = 60676, + [SMALL_STATE(2179)] = 60686, + [SMALL_STATE(2180)] = 60696, + [SMALL_STATE(2181)] = 60706, + [SMALL_STATE(2182)] = 60714, + [SMALL_STATE(2183)] = 60722, + [SMALL_STATE(2184)] = 60732, + [SMALL_STATE(2185)] = 60742, + [SMALL_STATE(2186)] = 60750, + [SMALL_STATE(2187)] = 60760, + [SMALL_STATE(2188)] = 60768, + [SMALL_STATE(2189)] = 60776, + [SMALL_STATE(2190)] = 60784, + [SMALL_STATE(2191)] = 60794, + [SMALL_STATE(2192)] = 60804, + [SMALL_STATE(2193)] = 60814, + [SMALL_STATE(2194)] = 60824, + [SMALL_STATE(2195)] = 60832, + [SMALL_STATE(2196)] = 60840, + [SMALL_STATE(2197)] = 60850, + [SMALL_STATE(2198)] = 60858, + [SMALL_STATE(2199)] = 60868, + [SMALL_STATE(2200)] = 60878, + [SMALL_STATE(2201)] = 60888, + [SMALL_STATE(2202)] = 60898, + [SMALL_STATE(2203)] = 60908, + [SMALL_STATE(2204)] = 60918, + [SMALL_STATE(2205)] = 60928, + [SMALL_STATE(2206)] = 60938, + [SMALL_STATE(2207)] = 60948, + [SMALL_STATE(2208)] = 60958, + [SMALL_STATE(2209)] = 60968, + [SMALL_STATE(2210)] = 60976, + [SMALL_STATE(2211)] = 60984, + [SMALL_STATE(2212)] = 60992, + [SMALL_STATE(2213)] = 61002, + [SMALL_STATE(2214)] = 61012, + [SMALL_STATE(2215)] = 61020, + [SMALL_STATE(2216)] = 61028, + [SMALL_STATE(2217)] = 61038, + [SMALL_STATE(2218)] = 61048, + [SMALL_STATE(2219)] = 61056, + [SMALL_STATE(2220)] = 61064, + [SMALL_STATE(2221)] = 61072, + [SMALL_STATE(2222)] = 61080, + [SMALL_STATE(2223)] = 61088, + [SMALL_STATE(2224)] = 61096, + [SMALL_STATE(2225)] = 61106, + [SMALL_STATE(2226)] = 61114, + [SMALL_STATE(2227)] = 61124, + [SMALL_STATE(2228)] = 61134, + [SMALL_STATE(2229)] = 61142, + [SMALL_STATE(2230)] = 61152, + [SMALL_STATE(2231)] = 61160, + [SMALL_STATE(2232)] = 61170, + [SMALL_STATE(2233)] = 61180, + [SMALL_STATE(2234)] = 61190, + [SMALL_STATE(2235)] = 61200, + [SMALL_STATE(2236)] = 61208, + [SMALL_STATE(2237)] = 61216, + [SMALL_STATE(2238)] = 61226, + [SMALL_STATE(2239)] = 61236, + [SMALL_STATE(2240)] = 61246, + [SMALL_STATE(2241)] = 61254, + [SMALL_STATE(2242)] = 61262, + [SMALL_STATE(2243)] = 61272, + [SMALL_STATE(2244)] = 61280, + [SMALL_STATE(2245)] = 61288, + [SMALL_STATE(2246)] = 61296, + [SMALL_STATE(2247)] = 61306, + [SMALL_STATE(2248)] = 61316, + [SMALL_STATE(2249)] = 61326, + [SMALL_STATE(2250)] = 61336, + [SMALL_STATE(2251)] = 61344, + [SMALL_STATE(2252)] = 61354, + [SMALL_STATE(2253)] = 61364, + [SMALL_STATE(2254)] = 61374, + [SMALL_STATE(2255)] = 61384, + [SMALL_STATE(2256)] = 61394, + [SMALL_STATE(2257)] = 61404, + [SMALL_STATE(2258)] = 61414, + [SMALL_STATE(2259)] = 61422, + [SMALL_STATE(2260)] = 61432, + [SMALL_STATE(2261)] = 61442, + [SMALL_STATE(2262)] = 61450, + [SMALL_STATE(2263)] = 61460, + [SMALL_STATE(2264)] = 61470, + [SMALL_STATE(2265)] = 61478, + [SMALL_STATE(2266)] = 61486, + [SMALL_STATE(2267)] = 61496, + [SMALL_STATE(2268)] = 61506, + [SMALL_STATE(2269)] = 61514, + [SMALL_STATE(2270)] = 61522, + [SMALL_STATE(2271)] = 61530, + [SMALL_STATE(2272)] = 61540, + [SMALL_STATE(2273)] = 61550, + [SMALL_STATE(2274)] = 61560, + [SMALL_STATE(2275)] = 61570, + [SMALL_STATE(2276)] = 61580, + [SMALL_STATE(2277)] = 61590, + [SMALL_STATE(2278)] = 61600, + [SMALL_STATE(2279)] = 61610, + [SMALL_STATE(2280)] = 61620, + [SMALL_STATE(2281)] = 61630, + [SMALL_STATE(2282)] = 61640, + [SMALL_STATE(2283)] = 61650, + [SMALL_STATE(2284)] = 61660, + [SMALL_STATE(2285)] = 61670, + [SMALL_STATE(2286)] = 61678, + [SMALL_STATE(2287)] = 61688, + [SMALL_STATE(2288)] = 61698, + [SMALL_STATE(2289)] = 61708, + [SMALL_STATE(2290)] = 61718, + [SMALL_STATE(2291)] = 61728, + [SMALL_STATE(2292)] = 61738, + [SMALL_STATE(2293)] = 61748, + [SMALL_STATE(2294)] = 61758, + [SMALL_STATE(2295)] = 61766, + [SMALL_STATE(2296)] = 61776, + [SMALL_STATE(2297)] = 61784, + [SMALL_STATE(2298)] = 61794, + [SMALL_STATE(2299)] = 61804, + [SMALL_STATE(2300)] = 61814, + [SMALL_STATE(2301)] = 61822, + [SMALL_STATE(2302)] = 61832, + [SMALL_STATE(2303)] = 61842, + [SMALL_STATE(2304)] = 61850, + [SMALL_STATE(2305)] = 61860, + [SMALL_STATE(2306)] = 61868, + [SMALL_STATE(2307)] = 61876, + [SMALL_STATE(2308)] = 61884, + [SMALL_STATE(2309)] = 61892, + [SMALL_STATE(2310)] = 61902, + [SMALL_STATE(2311)] = 61910, + [SMALL_STATE(2312)] = 61920, + [SMALL_STATE(2313)] = 61930, + [SMALL_STATE(2314)] = 61940, + [SMALL_STATE(2315)] = 61948, + [SMALL_STATE(2316)] = 61958, + [SMALL_STATE(2317)] = 61968, + [SMALL_STATE(2318)] = 61978, + [SMALL_STATE(2319)] = 61986, + [SMALL_STATE(2320)] = 61996, + [SMALL_STATE(2321)] = 62004, + [SMALL_STATE(2322)] = 62014, + [SMALL_STATE(2323)] = 62024, + [SMALL_STATE(2324)] = 62034, + [SMALL_STATE(2325)] = 62042, + [SMALL_STATE(2326)] = 62050, + [SMALL_STATE(2327)] = 62060, + [SMALL_STATE(2328)] = 62070, + [SMALL_STATE(2329)] = 62078, + [SMALL_STATE(2330)] = 62088, + [SMALL_STATE(2331)] = 62098, + [SMALL_STATE(2332)] = 62106, + [SMALL_STATE(2333)] = 62116, + [SMALL_STATE(2334)] = 62126, + [SMALL_STATE(2335)] = 62136, + [SMALL_STATE(2336)] = 62146, + [SMALL_STATE(2337)] = 62156, + [SMALL_STATE(2338)] = 62166, + [SMALL_STATE(2339)] = 62174, + [SMALL_STATE(2340)] = 62184, + [SMALL_STATE(2341)] = 62192, + [SMALL_STATE(2342)] = 62202, + [SMALL_STATE(2343)] = 62210, + [SMALL_STATE(2344)] = 62220, + [SMALL_STATE(2345)] = 62230, + [SMALL_STATE(2346)] = 62238, + [SMALL_STATE(2347)] = 62248, + [SMALL_STATE(2348)] = 62258, + [SMALL_STATE(2349)] = 62266, + [SMALL_STATE(2350)] = 62274, + [SMALL_STATE(2351)] = 62284, + [SMALL_STATE(2352)] = 62294, + [SMALL_STATE(2353)] = 62302, + [SMALL_STATE(2354)] = 62310, + [SMALL_STATE(2355)] = 62320, + [SMALL_STATE(2356)] = 62330, + [SMALL_STATE(2357)] = 62340, + [SMALL_STATE(2358)] = 62350, + [SMALL_STATE(2359)] = 62360, + [SMALL_STATE(2360)] = 62370, + [SMALL_STATE(2361)] = 62380, + [SMALL_STATE(2362)] = 62390, + [SMALL_STATE(2363)] = 62400, + [SMALL_STATE(2364)] = 62408, + [SMALL_STATE(2365)] = 62418, + [SMALL_STATE(2366)] = 62426, + [SMALL_STATE(2367)] = 62434, + [SMALL_STATE(2368)] = 62444, + [SMALL_STATE(2369)] = 62452, + [SMALL_STATE(2370)] = 62462, + [SMALL_STATE(2371)] = 62470, + [SMALL_STATE(2372)] = 62480, + [SMALL_STATE(2373)] = 62490, + [SMALL_STATE(2374)] = 62500, + [SMALL_STATE(2375)] = 62508, + [SMALL_STATE(2376)] = 62518, + [SMALL_STATE(2377)] = 62528, + [SMALL_STATE(2378)] = 62536, + [SMALL_STATE(2379)] = 62546, + [SMALL_STATE(2380)] = 62556, + [SMALL_STATE(2381)] = 62566, + [SMALL_STATE(2382)] = 62576, + [SMALL_STATE(2383)] = 62586, + [SMALL_STATE(2384)] = 62596, + [SMALL_STATE(2385)] = 62604, + [SMALL_STATE(2386)] = 62614, + [SMALL_STATE(2387)] = 62624, + [SMALL_STATE(2388)] = 62634, + [SMALL_STATE(2389)] = 62642, + [SMALL_STATE(2390)] = 62652, + [SMALL_STATE(2391)] = 62662, + [SMALL_STATE(2392)] = 62672, + [SMALL_STATE(2393)] = 62682, + [SMALL_STATE(2394)] = 62692, + [SMALL_STATE(2395)] = 62702, + [SMALL_STATE(2396)] = 62710, + [SMALL_STATE(2397)] = 62720, + [SMALL_STATE(2398)] = 62730, + [SMALL_STATE(2399)] = 62740, + [SMALL_STATE(2400)] = 62750, + [SMALL_STATE(2401)] = 62760, + [SMALL_STATE(2402)] = 62770, + [SMALL_STATE(2403)] = 62778, + [SMALL_STATE(2404)] = 62788, + [SMALL_STATE(2405)] = 62796, + [SMALL_STATE(2406)] = 62804, + [SMALL_STATE(2407)] = 62814, + [SMALL_STATE(2408)] = 62822, + [SMALL_STATE(2409)] = 62830, + [SMALL_STATE(2410)] = 62840, + [SMALL_STATE(2411)] = 62848, + [SMALL_STATE(2412)] = 62856, + [SMALL_STATE(2413)] = 62866, + [SMALL_STATE(2414)] = 62874, + [SMALL_STATE(2415)] = 62884, + [SMALL_STATE(2416)] = 62894, + [SMALL_STATE(2417)] = 62902, + [SMALL_STATE(2418)] = 62910, + [SMALL_STATE(2419)] = 62918, + [SMALL_STATE(2420)] = 62928, + [SMALL_STATE(2421)] = 62936, + [SMALL_STATE(2422)] = 62946, + [SMALL_STATE(2423)] = 62956, + [SMALL_STATE(2424)] = 62966, + [SMALL_STATE(2425)] = 62976, + [SMALL_STATE(2426)] = 62984, + [SMALL_STATE(2427)] = 62994, + [SMALL_STATE(2428)] = 63002, + [SMALL_STATE(2429)] = 63010, + [SMALL_STATE(2430)] = 63020, + [SMALL_STATE(2431)] = 63028, + [SMALL_STATE(2432)] = 63036, + [SMALL_STATE(2433)] = 63046, + [SMALL_STATE(2434)] = 63056, + [SMALL_STATE(2435)] = 63066, + [SMALL_STATE(2436)] = 63076, + [SMALL_STATE(2437)] = 63086, + [SMALL_STATE(2438)] = 63096, + [SMALL_STATE(2439)] = 63104, + [SMALL_STATE(2440)] = 63114, + [SMALL_STATE(2441)] = 63124, + [SMALL_STATE(2442)] = 63134, + [SMALL_STATE(2443)] = 63144, + [SMALL_STATE(2444)] = 63154, + [SMALL_STATE(2445)] = 63164, + [SMALL_STATE(2446)] = 63171, + [SMALL_STATE(2447)] = 63178, + [SMALL_STATE(2448)] = 63185, + [SMALL_STATE(2449)] = 63192, + [SMALL_STATE(2450)] = 63199, + [SMALL_STATE(2451)] = 63206, + [SMALL_STATE(2452)] = 63213, + [SMALL_STATE(2453)] = 63220, + [SMALL_STATE(2454)] = 63227, + [SMALL_STATE(2455)] = 63234, + [SMALL_STATE(2456)] = 63241, + [SMALL_STATE(2457)] = 63248, + [SMALL_STATE(2458)] = 63255, + [SMALL_STATE(2459)] = 63262, + [SMALL_STATE(2460)] = 63269, + [SMALL_STATE(2461)] = 63276, + [SMALL_STATE(2462)] = 63283, + [SMALL_STATE(2463)] = 63290, + [SMALL_STATE(2464)] = 63297, + [SMALL_STATE(2465)] = 63304, + [SMALL_STATE(2466)] = 63311, + [SMALL_STATE(2467)] = 63318, + [SMALL_STATE(2468)] = 63325, + [SMALL_STATE(2469)] = 63332, + [SMALL_STATE(2470)] = 63339, + [SMALL_STATE(2471)] = 63346, + [SMALL_STATE(2472)] = 63353, + [SMALL_STATE(2473)] = 63360, + [SMALL_STATE(2474)] = 63367, + [SMALL_STATE(2475)] = 63374, + [SMALL_STATE(2476)] = 63381, + [SMALL_STATE(2477)] = 63388, + [SMALL_STATE(2478)] = 63395, + [SMALL_STATE(2479)] = 63402, + [SMALL_STATE(2480)] = 63409, + [SMALL_STATE(2481)] = 63416, + [SMALL_STATE(2482)] = 63423, + [SMALL_STATE(2483)] = 63430, + [SMALL_STATE(2484)] = 63437, + [SMALL_STATE(2485)] = 63444, + [SMALL_STATE(2486)] = 63451, + [SMALL_STATE(2487)] = 63458, + [SMALL_STATE(2488)] = 63465, + [SMALL_STATE(2489)] = 63472, + [SMALL_STATE(2490)] = 63479, + [SMALL_STATE(2491)] = 63486, + [SMALL_STATE(2492)] = 63493, + [SMALL_STATE(2493)] = 63500, + [SMALL_STATE(2494)] = 63507, + [SMALL_STATE(2495)] = 63514, + [SMALL_STATE(2496)] = 63521, + [SMALL_STATE(2497)] = 63528, + [SMALL_STATE(2498)] = 63535, + [SMALL_STATE(2499)] = 63542, + [SMALL_STATE(2500)] = 63549, + [SMALL_STATE(2501)] = 63556, + [SMALL_STATE(2502)] = 63563, + [SMALL_STATE(2503)] = 63570, + [SMALL_STATE(2504)] = 63577, + [SMALL_STATE(2505)] = 63584, + [SMALL_STATE(2506)] = 63591, + [SMALL_STATE(2507)] = 63598, + [SMALL_STATE(2508)] = 63605, + [SMALL_STATE(2509)] = 63612, + [SMALL_STATE(2510)] = 63619, + [SMALL_STATE(2511)] = 63626, + [SMALL_STATE(2512)] = 63633, + [SMALL_STATE(2513)] = 63640, + [SMALL_STATE(2514)] = 63647, + [SMALL_STATE(2515)] = 63654, + [SMALL_STATE(2516)] = 63661, + [SMALL_STATE(2517)] = 63668, + [SMALL_STATE(2518)] = 63675, + [SMALL_STATE(2519)] = 63682, + [SMALL_STATE(2520)] = 63689, + [SMALL_STATE(2521)] = 63696, + [SMALL_STATE(2522)] = 63703, + [SMALL_STATE(2523)] = 63710, + [SMALL_STATE(2524)] = 63717, + [SMALL_STATE(2525)] = 63724, + [SMALL_STATE(2526)] = 63731, + [SMALL_STATE(2527)] = 63738, + [SMALL_STATE(2528)] = 63745, + [SMALL_STATE(2529)] = 63752, + [SMALL_STATE(2530)] = 63759, + [SMALL_STATE(2531)] = 63766, + [SMALL_STATE(2532)] = 63773, + [SMALL_STATE(2533)] = 63780, + [SMALL_STATE(2534)] = 63787, + [SMALL_STATE(2535)] = 63794, + [SMALL_STATE(2536)] = 63801, + [SMALL_STATE(2537)] = 63808, + [SMALL_STATE(2538)] = 63815, + [SMALL_STATE(2539)] = 63822, + [SMALL_STATE(2540)] = 63829, + [SMALL_STATE(2541)] = 63836, + [SMALL_STATE(2542)] = 63843, + [SMALL_STATE(2543)] = 63850, + [SMALL_STATE(2544)] = 63857, + [SMALL_STATE(2545)] = 63864, + [SMALL_STATE(2546)] = 63871, + [SMALL_STATE(2547)] = 63878, + [SMALL_STATE(2548)] = 63885, + [SMALL_STATE(2549)] = 63892, + [SMALL_STATE(2550)] = 63899, + [SMALL_STATE(2551)] = 63906, + [SMALL_STATE(2552)] = 63913, + [SMALL_STATE(2553)] = 63920, + [SMALL_STATE(2554)] = 63927, + [SMALL_STATE(2555)] = 63934, + [SMALL_STATE(2556)] = 63941, + [SMALL_STATE(2557)] = 63948, + [SMALL_STATE(2558)] = 63955, + [SMALL_STATE(2559)] = 63962, + [SMALL_STATE(2560)] = 63969, + [SMALL_STATE(2561)] = 63976, + [SMALL_STATE(2562)] = 63983, + [SMALL_STATE(2563)] = 63990, + [SMALL_STATE(2564)] = 63997, + [SMALL_STATE(2565)] = 64004, + [SMALL_STATE(2566)] = 64011, + [SMALL_STATE(2567)] = 64018, + [SMALL_STATE(2568)] = 64025, + [SMALL_STATE(2569)] = 64032, + [SMALL_STATE(2570)] = 64039, + [SMALL_STATE(2571)] = 64046, + [SMALL_STATE(2572)] = 64053, + [SMALL_STATE(2573)] = 64060, + [SMALL_STATE(2574)] = 64067, + [SMALL_STATE(2575)] = 64074, + [SMALL_STATE(2576)] = 64081, + [SMALL_STATE(2577)] = 64088, + [SMALL_STATE(2578)] = 64095, + [SMALL_STATE(2579)] = 64102, + [SMALL_STATE(2580)] = 64109, + [SMALL_STATE(2581)] = 64116, + [SMALL_STATE(2582)] = 64123, + [SMALL_STATE(2583)] = 64130, + [SMALL_STATE(2584)] = 64137, + [SMALL_STATE(2585)] = 64144, + [SMALL_STATE(2586)] = 64151, + [SMALL_STATE(2587)] = 64158, + [SMALL_STATE(2588)] = 64165, + [SMALL_STATE(2589)] = 64172, + [SMALL_STATE(2590)] = 64179, + [SMALL_STATE(2591)] = 64186, + [SMALL_STATE(2592)] = 64193, + [SMALL_STATE(2593)] = 64200, + [SMALL_STATE(2594)] = 64207, + [SMALL_STATE(2595)] = 64214, + [SMALL_STATE(2596)] = 64221, + [SMALL_STATE(2597)] = 64228, + [SMALL_STATE(2598)] = 64235, + [SMALL_STATE(2599)] = 64242, + [SMALL_STATE(2600)] = 64249, + [SMALL_STATE(2601)] = 64256, + [SMALL_STATE(2602)] = 64263, + [SMALL_STATE(2603)] = 64270, + [SMALL_STATE(2604)] = 64277, + [SMALL_STATE(2605)] = 64284, + [SMALL_STATE(2606)] = 64291, + [SMALL_STATE(2607)] = 64298, + [SMALL_STATE(2608)] = 64305, + [SMALL_STATE(2609)] = 64312, + [SMALL_STATE(2610)] = 64319, + [SMALL_STATE(2611)] = 64326, + [SMALL_STATE(2612)] = 64333, + [SMALL_STATE(2613)] = 64340, + [SMALL_STATE(2614)] = 64347, + [SMALL_STATE(2615)] = 64354, + [SMALL_STATE(2616)] = 64361, + [SMALL_STATE(2617)] = 64368, + [SMALL_STATE(2618)] = 64375, + [SMALL_STATE(2619)] = 64382, + [SMALL_STATE(2620)] = 64389, + [SMALL_STATE(2621)] = 64396, + [SMALL_STATE(2622)] = 64403, + [SMALL_STATE(2623)] = 64410, + [SMALL_STATE(2624)] = 64417, + [SMALL_STATE(2625)] = 64424, + [SMALL_STATE(2626)] = 64431, + [SMALL_STATE(2627)] = 64438, + [SMALL_STATE(2628)] = 64445, + [SMALL_STATE(2629)] = 64452, + [SMALL_STATE(2630)] = 64459, + [SMALL_STATE(2631)] = 64466, + [SMALL_STATE(2632)] = 64473, + [SMALL_STATE(2633)] = 64480, + [SMALL_STATE(2634)] = 64487, + [SMALL_STATE(2635)] = 64494, + [SMALL_STATE(2636)] = 64501, + [SMALL_STATE(2637)] = 64508, + [SMALL_STATE(2638)] = 64515, + [SMALL_STATE(2639)] = 64522, + [SMALL_STATE(2640)] = 64529, + [SMALL_STATE(2641)] = 64536, + [SMALL_STATE(2642)] = 64543, + [SMALL_STATE(2643)] = 64550, + [SMALL_STATE(2644)] = 64557, + [SMALL_STATE(2645)] = 64564, + [SMALL_STATE(2646)] = 64571, + [SMALL_STATE(2647)] = 64578, + [SMALL_STATE(2648)] = 64585, + [SMALL_STATE(2649)] = 64592, + [SMALL_STATE(2650)] = 64599, + [SMALL_STATE(2651)] = 64606, + [SMALL_STATE(2652)] = 64613, + [SMALL_STATE(2653)] = 64620, + [SMALL_STATE(2654)] = 64627, + [SMALL_STATE(2655)] = 64634, + [SMALL_STATE(2656)] = 64641, + [SMALL_STATE(2657)] = 64648, + [SMALL_STATE(2658)] = 64655, + [SMALL_STATE(2659)] = 64662, + [SMALL_STATE(2660)] = 64669, + [SMALL_STATE(2661)] = 64676, + [SMALL_STATE(2662)] = 64683, + [SMALL_STATE(2663)] = 64690, + [SMALL_STATE(2664)] = 64697, + [SMALL_STATE(2665)] = 64704, + [SMALL_STATE(2666)] = 64711, + [SMALL_STATE(2667)] = 64718, + [SMALL_STATE(2668)] = 64725, + [SMALL_STATE(2669)] = 64732, + [SMALL_STATE(2670)] = 64739, + [SMALL_STATE(2671)] = 64746, + [SMALL_STATE(2672)] = 64753, + [SMALL_STATE(2673)] = 64760, + [SMALL_STATE(2674)] = 64767, + [SMALL_STATE(2675)] = 64774, + [SMALL_STATE(2676)] = 64781, + [SMALL_STATE(2677)] = 64788, }; static const TSParseActionEntry ts_parse_actions[] = {